-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathcstring
More file actions
53 lines (48 loc) · 848 Bytes
/
cstring
File metadata and controls
53 lines (48 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// -*- C++ -*-
#ifndef _EZCXX_CSTRING
#define _EZCXX_CSTRING
#include <string.h>
#pragma clang system_header
namespace std {
using ::size_t;
using ::memcpy;
using ::memmove;
using ::memset;
using ::bzero;
using ::memcmp;
using ::memchr;
using ::memrchr;
using ::memmem;
using ::memrmem;
using ::memccpy;
using ::mempcpy;
using ::strcpy;
using ::strncpy;
using ::stpcpy;
using ::stpncpy;
using ::strlcpy;
using ::strcat;
using ::strncat;
using ::strlcat;
using ::strchr;
using ::strrchr;
using ::strchrnul;
using ::strpbrk;
using ::strstr;
using ::strrstr;
using ::strcasestr;
using ::strtok;
using ::strsep;
using ::strdup;
using ::strndup;
using ::strcspn;
using ::strspn;
using ::strlen;
using ::strnlen;
using ::strcmp;
using ::strncmp;
using ::strcasecmp;
using ::strncasecmp;
using ::strerror;
} // namespace std
#endif // _EZCXX_CSTRING