]> git.ipfire.org Git - thirdparty/gcc.git/blob - libphobos/libdruntime/core/sys/bionic/string.d
d: Merge upstream dmd 3982604c5, druntime bc58b1e9, phobos 12329adb6.
[thirdparty/gcc.git] / libphobos / libdruntime / core / sys / bionic / string.d
1 /**
2 * D header file for Bionic string.
3 *
4 * Copyright: Copyright © 2019, The D Language Foundation
5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
6 * Authors: Ernesto Castellotti
7 */
8 module core.sys.bionic.string;
9
10 public import core.stdc.string;
11
12 version (CRuntime_Bionic):
13 extern (C):
14 nothrow:
15 @nogc:
16
17 pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen);