d: Merge dmd. druntime e770945277, phobos 6d6e0b9b9
[official-gcc.git] / libphobos / libdruntime / core / stdc / string.d
blob3e906b10d4af0b07798460cbde81affa34e6ebc3
1 /**
2 * D header file for C99.
4 * $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_string.h.html, _string.h)
6 * Copyright: Copyright Sean Kelly 2005 - 2009.
7 * License: Distributed under the
8 * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
9 * (See accompanying file LICENSE)
10 * Authors: Sean Kelly
11 * Source: $(DRUNTIMESRC core/stdc/_string.d)
12 * Standards: ISO/IEC 9899:1999 (E)
15 module core.stdc.string;
17 version (OSX)
18 version = Darwin;
19 else version (iOS)
20 version = Darwin;
21 else version (TVOS)
22 version = Darwin;
23 else version (WatchOS)
24 version = Darwin;
26 // Those libs don't expose the mandated C interface
27 version (CRuntime_Glibc)
28 version = ReturnStrerrorR;
29 else version (CRuntime_UClibc)
30 version = ReturnStrerrorR;
32 extern (C):
33 nothrow:
34 @nogc:
36 ///
37 inout(void)* memchr(return scope inout void* s, int c, size_t n) pure;
38 ///
39 int memcmp(scope const void* s1, scope const void* s2, size_t n) pure;
40 ///
41 void* memcpy(return scope void* s1, scope const void* s2, size_t n) pure;
42 version (Windows)
44 ///
45 int memicmp(scope const char* s1, scope const char* s2, size_t n);
47 ///
48 void* memmove(return scope void* s1, scope const void* s2, size_t n) pure;
49 ///
50 void* memset(return scope void* s, int c, size_t n) pure;
52 ///
53 char* strcat(return scope char* s1, scope const char* s2) pure;
54 ///
55 inout(char)* strchr(return scope inout(char)* s, int c) pure;
56 ///
57 int strcmp(scope const char* s1, scope const char* s2) pure;
58 ///
59 int strcoll(scope const char* s1, scope const char* s2);
60 ///
61 char* strcpy(return scope char* s1, scope const char* s2) pure;
62 ///
63 size_t strcspn(scope const char* s1, scope const char* s2) pure;
64 ///
65 char* strdup(scope const char *s);
66 ///
67 char* strndup(scope const char *str, size_t size);
68 ///
69 char* strerror(int errnum);
70 // This `strerror_r` definition is not following the POSIX standard
71 version (ReturnStrerrorR)
73 ///
74 const(char)* strerror_r(int errnum, return scope char* buf, size_t buflen);
76 // This one is
77 else version (CRuntime_Newlib)
79 ///
80 pragma(mangle, "__xpg_strerror_r")
81 int strerror_r(int errnum, scope char* buf, size_t buflen);
83 else
85 ///
86 int strerror_r(int errnum, scope char* buf, size_t buflen);
88 ///
89 size_t strlen(scope const char* s) pure;
90 ///
91 char* strncat(return scope char* s1, scope const char* s2, size_t n) pure;
92 ///
93 int strncmp(scope const char* s1, scope const char* s2, size_t n) pure;
94 ///
95 char* strncpy(return scope char* s1, scope const char* s2, size_t n) pure;
96 ///
97 inout(char)* strpbrk(return scope inout(char)* s1, scope const char* s2) pure;
98 ///
99 inout(char)* strrchr(return scope inout(char)* s, int c) pure;
101 size_t strspn(scope const char* s1, scope const char* s2) pure;
103 inout(char)* strstr(return scope inout(char)* s1, scope const char* s2) pure;
105 char* strtok(return scope char* s1, scope const char* s2);
107 size_t strxfrm(scope char* s1, scope const char* s2, size_t n);