summaryrefslogtreecommitdiff
path: root/libphobos/libdruntime/core/sys/bionic/string.d
blob: 10a5610ac449ba467b70d846073eb43a6d8841c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
  * D header file for Bionic string.
  *
  * Copyright: Copyright © 2019, The D Language Foundation
  * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
  * Authors: Ernesto Castellotti
  */
module core.sys.bionic.string;

public import core.stdc.string;

version (CRuntime_Bionic):
extern (C):
nothrow:
@nogc:

pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen);