We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffed467 commit d3ec7b0Copy full SHA for d3ec7b0
cpp/common/test/includes/standard-library/cstring
@@ -1 +1,29 @@
1
-#include "cstring.h"
+#ifndef _GHLIBCPP_CSTRING
2
+#define _GHLIBCPP_CSTRING
3
+
4
+#include <string.h>
5
6
+namespace std {
7
+using ::memcmp;
8
+using ::memcpy;
9
+using ::memmove;
10
+using ::memset;
11
+using ::size_t;
12
+using ::strcat;
13
+using ::strchr;
14
+using ::strcmp;
15
+using ::strcoll;
16
+using ::strcpy;
17
+using ::strcspn;
18
+using ::strlen;
19
+using ::strncat;
20
+using ::strncmp;
21
+using ::strncpy;
22
+using ::strpbrk;
23
+using ::strrchr;
24
+using ::strspn;
25
+using ::strstr;
26
+using ::strtok;
27
+using ::strxfrm;
28
+} // namespace std
29
+#endif // _GHLIBCPP_CSTRING
cpp/common/test/includes/standard-library/cstring.h
0 commit comments