1 // cstring standard header
2 #pragma once
3 #ifndef _CSTRING_
4 #define _CSTRING_
5 #include <yvals.h>
6
7 #ifdef _STD_USING
8  #undef _STD_USING
9   #include <string.h>
10  #define _STD_USING
11
12 #else /* _STD_USING */
13  #include <string.h>
14 #endif /* _STD_USING */
15
16  #ifndef RC_INVOKED
17   #if _GLOBAL_USING
18 _STD_BEGIN
19 using ::size_t; using ::memchr; using ::memcmp;
20
21 using ::memcpy; using ::memmove; using ::memset;
22 using ::strcat; using ::strchr; using ::strcmp;
23 using ::strcoll; using ::strcpy; using ::strcspn;
Lines 24 ... 33 are skipped.
34
35 /*
36  * Copyright (c) 1992-2006 by P.J. Plauger.  ALL RIGHTS RESERVED.
37  * Consult your license regarding permissions and restrictions.
38  V5.02:0009 */
39