Skip to content

Commit d3ec7b0

Browse files
committed
Remove redundant header stub file
1 parent ffed467 commit d3ec7b0

File tree

2 files changed

+29
-30
lines changed

2 files changed

+29
-30
lines changed
Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
#include "cstring.h"
1+
#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

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)