summaryrefslogtreecommitdiff
path: root/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h
blob: 102388a27b2a565fe441fce7d6803084aa58ac0c (plain)
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
#ifndef MSL_STRING_H_
#define MSL_STRING_H_

#include <cstring>

namespace std {
using ::memcpy;
using ::memset;
using ::memcmp;
using ::memchr;
using ::memmove;

using ::strlen;
using ::strncmp;
using ::strcmp;
using ::strstr;
using ::strcat;
using ::strncpy;
using ::strcpy;

using ::strnicmp;
using ::stricmp;
using ::wcslen;

};  // namespace std

#endif