diff options
Diffstat (limited to 'src/wchar')
87 files changed, 435 insertions, 0 deletions
diff --git a/src/wchar/btowc.c b/src/wchar/btowc.c index 5dee422d..aa23463a 100644 --- a/src/wchar/btowc.c +++ b/src/wchar/btowc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <locale.h> #include <string.h> @@ -19,3 +21,6 @@ wint_t btowc(int c) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fgetwc.c b/src/wchar/fgetwc.c index 04cc2781..593c121a 100644 --- a/src/wchar/fgetwc.c +++ b/src/wchar/fgetwc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include <limits.h> @@ -32,3 +34,6 @@ wint_t fgetwc(FILE * stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fgetws.c b/src/wchar/fgetws.c index a7210445..69990116 100644 --- a/src/wchar/fgetws.c +++ b/src/wchar/fgetws.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include "_assert.h" @@ -35,3 +37,6 @@ wchar_t * fgetws(wchar_t * restrict s, int n, FILE * restrict stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fputwc.c b/src/wchar/fputwc.c index 056ff472..07855cc1 100644 --- a/src/wchar/fputwc.c +++ b/src/wchar/fputwc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include <limits.h> @@ -37,3 +39,6 @@ wint_t fputwc(wchar_t c, FILE * stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fputws.c b/src/wchar/fputws.c index 1151e76b..3bb8e8d8 100644 --- a/src/wchar/fputws.c +++ b/src/wchar/fputws.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -16,3 +18,6 @@ int fputws(const wchar_t * restrict s, FILE * restrict stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fwide.c b/src/wchar/fwide.c index 30699836..372a811f 100644 --- a/src/wchar/fwide.c +++ b/src/wchar/fwide.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include "stdio/_stdio.h" @@ -16,3 +18,6 @@ int fwide(FILE * stream, int mode) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fwprintf.c b/src/wchar/fwprintf.c index 308f4fa0..ddcf4fe7 100644 --- a/src/wchar/fwprintf.c +++ b/src/wchar/fwprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include <stdarg.h> @@ -14,3 +16,6 @@ int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fwprintf_s.c b/src/wchar/fwprintf_s.c index a88ef2c8..ae271c2d 100644 --- a/src/wchar/fwprintf_s.c +++ b/src/wchar/fwprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <wchar.h> @@ -14,3 +16,6 @@ int fwprintf_s(FILE * restrict stream, const wchar_t * restrict format, ...) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/fwscanf.c b/src/wchar/fwscanf.c index 1c0f61ad..229b70f4 100644 --- a/src/wchar/fwscanf.c +++ b/src/wchar/fwscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include <stdarg.h> @@ -19,3 +21,6 @@ int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/fwscanf_s.c b/src/wchar/fwscanf_s.c index a55c9d76..7188f3cf 100644 --- a/src/wchar/fwscanf_s.c +++ b/src/wchar/fwscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <wchar.h> @@ -14,3 +16,6 @@ int fwscanf_s(FILE * restrict stream, const wchar_t * restrict format, ...) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/getwc.c b/src/wchar/getwc.c index 9ee36186..173f4c36 100644 --- a/src/wchar/getwc.c +++ b/src/wchar/getwc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -9,3 +11,6 @@ wint_t getwc(FILE * stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/getwchar.c b/src/wchar/getwchar.c index 2b0d54ce..4e9105f9 100644 --- a/src/wchar/getwchar.c +++ b/src/wchar/getwchar.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -9,3 +11,6 @@ wint_t getwchar(void) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/mbrlen.c b/src/wchar/mbrlen.c index dd0af70b..8290e6ec 100644 --- a/src/wchar/mbrlen.c +++ b/src/wchar/mbrlen.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps) @@ -9,3 +11,6 @@ size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/mbrtowc.c b/src/wchar/mbrtowc.c index f6795d7f..647b5e98 100644 --- a/src/wchar/mbrtowc.c +++ b/src/wchar/mbrtowc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps) @@ -17,3 +19,6 @@ size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstat /* STDC(199409) */ + + +#endif diff --git a/src/wchar/mbsinit.c b/src/wchar/mbsinit.c index f3d7b44f..590ce2e6 100644 --- a/src/wchar/mbsinit.c +++ b/src/wchar/mbsinit.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int mbsinit(const mbstate_t * ps) @@ -12,3 +14,6 @@ int mbsinit(const mbstate_t * ps) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/mbsrtowcs.c b/src/wchar/mbsrtowcs.c index 12f5e6a1..dc8bde58 100644 --- a/src/wchar/mbsrtowcs.c +++ b/src/wchar/mbsrtowcs.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t mbsrtowcs(wchar_t * restrict dst, const char * restrict src, size_t len, mbstate_t * restrict ps) @@ -9,3 +11,6 @@ size_t mbsrtowcs(wchar_t * restrict dst, const char * restrict src, size_t len, /* STDC(199409) */ + + +#endif diff --git a/src/wchar/mbsrtowcs_s.c b/src/wchar/mbsrtowcs_s.c index b4c64298..7284a0fe 100644 --- a/src/wchar/mbsrtowcs_s.c +++ b/src/wchar/mbsrtowcs_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t mbsrtowcs_s(size_t * restrict retval, @@ -11,3 +13,6 @@ errno_t mbsrtowcs_s(size_t * restrict retval, /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/putwc.c b/src/wchar/putwc.c index 10181319..87d58b04 100644 --- a/src/wchar/putwc.c +++ b/src/wchar/putwc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -9,3 +11,6 @@ wint_t putwc(wchar_t c, FILE * stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/putwchar.c b/src/wchar/putwchar.c index 659f4dd7..386b6913 100644 --- a/src/wchar/putwchar.c +++ b/src/wchar/putwchar.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -9,3 +11,6 @@ wint_t putwchar(wchar_t c) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/snwprintf_s.c b/src/wchar/snwprintf_s.c index bd3a537d..402da30b 100644 --- a/src/wchar/snwprintf_s.c +++ b/src/wchar/snwprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int snwprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format, ...) @@ -13,3 +15,6 @@ int snwprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/swprintf.c b/src/wchar/swprintf.c index c9a6dcc6..a3aa6c45 100644 --- a/src/wchar/swprintf.c +++ b/src/wchar/swprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -13,3 +15,6 @@ int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, .. /* STDC(199409) */ + + +#endif diff --git a/src/wchar/swprintf_s.c b/src/wchar/swprintf_s.c index 4f5a4d82..abadca9e 100644 --- a/src/wchar/swprintf_s.c +++ b/src/wchar/swprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int swprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format, @@ -14,3 +16,6 @@ int swprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format, /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/swscanf.c b/src/wchar/swscanf.c index dcb59728..8885a143 100644 --- a/src/wchar/swscanf.c +++ b/src/wchar/swscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdarg.h> #include <wchar.h> @@ -18,3 +20,6 @@ int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/swscanf_s.c b/src/wchar/swscanf_s.c index e00b3e4c..754650a4 100644 --- a/src/wchar/swscanf_s.c +++ b/src/wchar/swscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int swscanf_s(const wchar_t * restrict s, const wchar_t * restrict format, ...) @@ -13,3 +15,6 @@ int swscanf_s(const wchar_t * restrict s, const wchar_t * restrict format, ...) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/ungetwc.c b/src/wchar/ungetwc.c index 72f1fc21..028de61a 100644 --- a/src/wchar/ungetwc.c +++ b/src/wchar/ungetwc.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -10,3 +12,6 @@ wint_t ungetwc(wint_t c, FILE * stream) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/vfwprintf.c b/src/wchar/vfwprintf.c index 4813934e..d9cf9b8e 100644 --- a/src/wchar/vfwprintf.c +++ b/src/wchar/vfwprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> #include <stdarg.h> @@ -17,3 +19,6 @@ int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list a /* STDC(199409) */ + + +#endif diff --git a/src/wchar/vfwprintf_s.c b/src/wchar/vfwprintf_s.c index cc72f88b..61a5358c 100644 --- a/src/wchar/vfwprintf_s.c +++ b/src/wchar/vfwprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <wchar.h> @@ -13,3 +15,6 @@ int vfwprintf_s(FILE * restrict stream, const wchar_t * restrict format, va_list /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vfwscanf.c b/src/wchar/vfwscanf.c index bc3f6e8c..b86b531b 100644 --- a/src/wchar/vfwscanf.c +++ b/src/wchar/vfwscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <wchar.h> #include "stdio/_stdio.h" @@ -19,3 +21,6 @@ int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list ar /* STDC(199901) */ + + +#endif diff --git a/src/wchar/vfwscanf_s.c b/src/wchar/vfwscanf_s.c index ea6103ea..d9b6f147 100644 --- a/src/wchar/vfwscanf_s.c +++ b/src/wchar/vfwscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <wchar.h> @@ -10,3 +12,6 @@ int vfwscanf_s(FILE * restrict stream, const wchar_t * restrict format, va_list /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vsnwprintf_s.c b/src/wchar/vsnwprintf_s.c index 103cd1ee..56c69cc7 100644 --- a/src/wchar/vsnwprintf_s.c +++ b/src/wchar/vsnwprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + int vsnwprintf_s(whcar_t * restrict s, rsize_t n, const wchar_t * restrict format, va_list arg) { __C_EXT(1, 201112L); @@ -7,3 +9,6 @@ int vsnwprintf_s(whcar_t * restrict s, rsize_t n, const wchar_t * restrict forma /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vswprintf.c b/src/wchar/vswprintf.c index 429e0a53..34d23296 100644 --- a/src/wchar/vswprintf.c +++ b/src/wchar/vswprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdarg.h> #include <wchar.h> #include "stdio/_stdio.h" @@ -16,3 +18,6 @@ int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, v /* STDC(199409) */ + + +#endif diff --git a/src/wchar/vswprintf_s.c b/src/wchar/vswprintf_s.c index e6e9559e..c789b448 100644 --- a/src/wchar/vswprintf_s.c +++ b/src/wchar/vswprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -10,3 +12,6 @@ int vswprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vswscanf.c b/src/wchar/vswscanf.c index 0ecd61e9..a6574e9b 100644 --- a/src/wchar/vswscanf.c +++ b/src/wchar/vswscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include "stdio/_stdio.h" @@ -18,3 +20,6 @@ int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_lis /* STDC(199901) */ + + +#endif diff --git a/src/wchar/vswscanf_s.c b/src/wchar/vswscanf_s.c index da89ce48..3b2dd6a4 100644 --- a/src/wchar/vswscanf_s.c +++ b/src/wchar/vswscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -13,3 +15,6 @@ int vswscanf_s(const wchar_t * restrict s, const wchar_t * restrict format, va_l /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vwprintf.c b/src/wchar/vwprintf.c index a4bfadcb..d3a42e72 100644 --- a/src/wchar/vwprintf.c +++ b/src/wchar/vwprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdio.h> @@ -9,3 +11,6 @@ int vwprintf(const wchar_t * restrict format, va_list arg) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/vwprintf_s.c b/src/wchar/vwprintf_s.c index 25b73a48..a67c9239 100644 --- a/src/wchar/vwprintf_s.c +++ b/src/wchar/vwprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -10,3 +12,6 @@ int vwprintf_s(const wchar_t * restrict format, va_list arg) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/vwscanf.c b/src/wchar/vwscanf.c index 66c501f7..8278e820 100644 --- a/src/wchar/vwscanf.c +++ b/src/wchar/vwscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> #include <stdio.h> @@ -10,3 +12,6 @@ int vwscanf(const wchar_t * restrict format, va_list arg) /* STDC(199901) */ + + +#endif diff --git a/src/wchar/vwscanf_s.c b/src/wchar/vwscanf_s.c index 7fd6f2f5..d795ce96 100644 --- a/src/wchar/vwscanf_s.c +++ b/src/wchar/vwscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -10,3 +12,6 @@ int vwscanf_s(const wchar_t * restrict format, va_list arg) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcrtomb.c b/src/wchar/wcrtomb.c index cc8db136..bfad86ef 100644 --- a/src/wchar/wcrtomb.c +++ b/src/wchar/wcrtomb.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <limits.h> @@ -17,3 +19,6 @@ size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcrtomb_s.c b/src/wchar/wcrtomb_s.c index 12ea273e..898da3fd 100644 --- a/src/wchar/wcrtomb_s.c +++ b/src/wchar/wcrtomb_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcrtomb_s(size_t * restrict retval, char * restrict s, rsize_t smax, @@ -9,3 +11,6 @@ errno_t wcrtomb_s(size_t * restrict retval, char * restrict s, rsize_t smax, /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcscat.c b/src/wchar/wcscat.c index 8ffec24f..24fb008c 100644 --- a/src/wchar/wcscat.c +++ b/src/wchar/wcscat.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2) @@ -9,3 +11,6 @@ wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcscat_s.c b/src/wchar/wcscat_s.c index 75d7b779..b762d219 100644 --- a/src/wchar/wcscat_s.c +++ b/src/wchar/wcscat_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcscat_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2) @@ -8,3 +10,6 @@ errno_t wcscat_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcschr.c b/src/wchar/wcschr.c index cc206ed8..2a23d8b6 100644 --- a/src/wchar/wcschr.c +++ b/src/wchar/wcschr.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcschr(const wchar_t * s, wchar_t c) @@ -15,3 +17,6 @@ wchar_t * wcschr(const wchar_t * s, wchar_t c) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcscmp.c b/src/wchar/wcscmp.c index 25508509..01d282fc 100644 --- a/src/wchar/wcscmp.c +++ b/src/wchar/wcscmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include "_assert.h" @@ -23,3 +25,6 @@ int wcscmp(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcscoll.c b/src/wchar/wcscoll.c index 097a2cc4..83fd39e8 100644 --- a/src/wchar/wcscoll.c +++ b/src/wchar/wcscoll.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int wcscoll(const wchar_t * s1, const wchar_t * s2) @@ -13,3 +15,6 @@ int wcscoll(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcscpy.c b/src/wchar/wcscpy.c index 2f92bc3f..cc1985a9 100644 --- a/src/wchar/wcscpy.c +++ b/src/wchar/wcscpy.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2) @@ -8,3 +10,6 @@ wchar_t * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcscpy_s.c b/src/wchar/wcscpy_s.c index c7ce17c0..f3c9206d 100644 --- a/src/wchar/wcscpy_s.c +++ b/src/wchar/wcscpy_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcscpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2) @@ -8,3 +10,6 @@ errno_t wcscpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcscspn.c b/src/wchar/wcscspn.c index 0586bf2f..5c063a47 100644 --- a/src/wchar/wcscspn.c +++ b/src/wchar/wcscspn.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include "_assert.h" @@ -19,3 +21,6 @@ size_t wcscspn(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsftime.c b/src/wchar/wcsftime.c index ddca082d..398d8c55 100644 --- a/src/wchar/wcsftime.c +++ b/src/wchar/wcsftime.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr) @@ -9,3 +11,6 @@ size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict f /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcslen.c b/src/wchar/wcslen.c index 5b4ec7be..ca04fa0a 100644 --- a/src/wchar/wcslen.c +++ b/src/wchar/wcslen.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcslen(const wchar_t * s) @@ -12,3 +14,6 @@ size_t wcslen(const wchar_t * s) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsncat.c b/src/wchar/wcsncat.c index 8dccba65..f2085747 100644 --- a/src/wchar/wcsncat.c +++ b/src/wchar/wcsncat.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) @@ -10,3 +12,6 @@ wchar_t * wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsncat_s.c b/src/wchar/wcsncat_s.c index aaae45cf..93cdbf10 100644 --- a/src/wchar/wcsncat_s.c +++ b/src/wchar/wcsncat_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcsncat_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2, rsize_t n) @@ -8,3 +10,6 @@ errno_t wcsncat_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcsncmp.c b/src/wchar/wcsncmp.c index f5c56c28..14efdb51 100644 --- a/src/wchar/wcsncmp.c +++ b/src/wchar/wcsncmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include "_assert.h" @@ -22,3 +24,6 @@ int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsncpy.c b/src/wchar/wcsncpy.c index ebae8133..4a33779a 100644 --- a/src/wchar/wcsncpy.c +++ b/src/wchar/wcsncpy.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) @@ -16,3 +18,6 @@ wchar_t * wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsncpy_s.c b/src/wchar/wcsncpy_s.c index 9bcf6906..9748a65b 100644 --- a/src/wchar/wcsncpy_s.c +++ b/src/wchar/wcsncpy_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcsncpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2, rsize_t n) @@ -8,3 +10,6 @@ errno_t wcsncpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcsnlen_s.c b/src/wchar/wcsnlen_s.c index 012c4459..d42fa1fb 100644 --- a/src/wchar/wcsnlen_s.c +++ b/src/wchar/wcsnlen_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcsnlen_s( const wchar_t *ws, size_t maxlen) @@ -9,3 +11,6 @@ size_t wcsnlen_s( const wchar_t *ws, size_t maxlen) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcspbrk.c b/src/wchar/wcspbrk.c index d1553fd1..155bbdf5 100644 --- a/src/wchar/wcspbrk.c +++ b/src/wchar/wcspbrk.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2) @@ -15,3 +17,6 @@ wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsrchr.c b/src/wchar/wcsrchr.c index 291dc6f4..7d9e9a50 100644 --- a/src/wchar/wcsrchr.c +++ b/src/wchar/wcsrchr.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcsrchr(const wchar_t * s, wchar_t c) @@ -15,3 +17,6 @@ wchar_t * wcsrchr(const wchar_t * s, wchar_t c) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsrtombs.c b/src/wchar/wcsrtombs.c index 8df0bedf..b51b3a8b 100644 --- a/src/wchar/wcsrtombs.c +++ b/src/wchar/wcsrtombs.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps) @@ -9,3 +11,6 @@ size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsrtombs_s.c b/src/wchar/wcsrtombs_s.c index b8c2399a..5ae76e42 100644 --- a/src/wchar/wcsrtombs_s.c +++ b/src/wchar/wcsrtombs_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wcsrtombs_s(size_t * restrict retval, @@ -11,3 +13,6 @@ errno_t wcsrtombs_s(size_t * restrict retval, /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcsspn.c b/src/wchar/wcsspn.c index 50cd0e02..162c141b 100644 --- a/src/wchar/wcsspn.c +++ b/src/wchar/wcsspn.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcsspn(const wchar_t * s1, const wchar_t * s2) @@ -15,3 +17,6 @@ size_t wcsspn(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcsstr.c b/src/wchar/wcsstr.c index 22cf9fa7..12bc2cfd 100644 --- a/src/wchar/wcsstr.c +++ b/src/wchar/wcsstr.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2) @@ -9,3 +11,6 @@ wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcstod.c b/src/wchar/wcstod.c index d8eeef74..f0e0cbc8 100644 --- a/src/wchar/wcstod.c +++ b/src/wchar/wcstod.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr) @@ -9,3 +11,6 @@ double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcstof.c b/src/wchar/wcstof.c index 75aafbbf..b6784dd9 100644 --- a/src/wchar/wcstof.c +++ b/src/wchar/wcstof.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr) @@ -9,3 +11,6 @@ float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr) /* STDC(199901) */ + + +#endif diff --git a/src/wchar/wcstok.c b/src/wchar/wcstok.c index 0c40f5d9..83841c1d 100644 --- a/src/wchar/wcstok.c +++ b/src/wchar/wcstok.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr) @@ -9,3 +11,6 @@ wchar_t * wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcstok_s.c b/src/wchar/wcstok_s.c index 69d176ae..b9418e7c 100644 --- a/src/wchar/wcstok_s.c +++ b/src/wchar/wcstok_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t *wcstok_s(wchar_t * restrict s1, rsize_t * restrict s1max, @@ -9,3 +11,6 @@ wchar_t *wcstok_s(wchar_t * restrict s1, rsize_t * restrict s1max, /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wcstol.c b/src/wchar/wcstol.c index 97741a3d..256b0fee 100644 --- a/src/wchar/wcstol.c +++ b/src/wchar/wcstol.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <wctype.h> #include <limits.h> @@ -19,3 +21,6 @@ long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int b /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcstold.c b/src/wchar/wcstold.c index b105606f..4f717147 100644 --- a/src/wchar/wcstold.c +++ b/src/wchar/wcstold.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr) @@ -9,3 +11,6 @@ long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr) /* STDC(199901) */ + + +#endif diff --git a/src/wchar/wcstoll.c b/src/wchar/wcstoll.c index e2c2c323..1cad9376 100644 --- a/src/wchar/wcstoll.c +++ b/src/wchar/wcstoll.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <limits.h> #include <errno.h> @@ -19,3 +21,6 @@ long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, /* STDC(199901) */ + + +#endif diff --git a/src/wchar/wcstoul.c b/src/wchar/wcstoul.c index 51b026c2..eef920c9 100644 --- a/src/wchar/wcstoul.c +++ b/src/wchar/wcstoul.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <wctype.h> #include <limits.h> @@ -19,3 +21,6 @@ unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict end /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcstoull.c b/src/wchar/wcstoull.c index 23cfcb2f..ef838036 100644 --- a/src/wchar/wcstoull.c +++ b/src/wchar/wcstoull.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <limits.h> #include <errno.h> @@ -19,3 +21,6 @@ unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restri /* STDC(199901) */ + + +#endif diff --git a/src/wchar/wcswcs.c b/src/wchar/wcswcs.c index 8f5df6f8..f9dcae5f 100644 --- a/src/wchar/wcswcs.c +++ b/src/wchar/wcswcs.c @@ -1,3 +1,5 @@ +#if 0 + #ifdef __STDC_VERSION__ #include <wchar.h> #else @@ -16,3 +18,6 @@ wchar_t * wcswcs(const wchar_t * s1, const wchar_t * s2) /* XOPEN(4,700) */ + + +#endif diff --git a/src/wchar/wcswidth.c b/src/wchar/wcswidth.c index 3f0ea728..c10bf4c7 100644 --- a/src/wchar/wcswidth.c +++ b/src/wchar/wcswidth.c @@ -1,3 +1,5 @@ +#if 0 + #include <stddef.h> #include "wctype/wint_t.c" #include "wctype/wctrans_t.c" @@ -11,3 +13,6 @@ int wcswidth(const wchar_t * wcsptr, size_t n) XOPEN(4) NOTE: this portion is shaded WP in SUSv1 */ + + +#endif diff --git a/src/wchar/wcsxfrm.c b/src/wchar/wcsxfrm.c index acc87510..9982aa8d 100644 --- a/src/wchar/wcsxfrm.c +++ b/src/wchar/wcsxfrm.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) @@ -9,3 +11,6 @@ size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wctob.c b/src/wchar/wctob.c index 32cf1ab6..5608a672 100644 --- a/src/wchar/wctob.c +++ b/src/wchar/wctob.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <locale.h> #include <string.h> @@ -20,3 +22,6 @@ int wctob(wint_t c) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wcwidth.c b/src/wchar/wcwidth.c index 87e9d943..e562233c 100644 --- a/src/wchar/wcwidth.c +++ b/src/wchar/wcwidth.c @@ -1,3 +1,5 @@ +#if 0 + #include <stddef.h> #include "wctype/wint_t.c" #include "wctype/wctrans_t.c" @@ -11,3 +13,6 @@ int wcwidth(wchar_t wc) XOPEN(4) NOTE: this function is shaded "WP" in SUSv1 */ + + +#endif diff --git a/src/wchar/wmemchr.c b/src/wchar/wmemchr.c index f8939319..dcbf0d1d 100644 --- a/src/wchar/wmemchr.c +++ b/src/wchar/wmemchr.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include "_assert.h" @@ -19,3 +21,6 @@ wchar_t * wmemchr(const wchar_t * s, wchar_t c, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wmemcmp.c b/src/wchar/wmemcmp.c index d3c2ce52..97be69fe 100644 --- a/src/wchar/wmemcmp.c +++ b/src/wchar/wmemcmp.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int wmemcmp(const wchar_t * s1, const wchar_t * s2, size_t n) @@ -18,3 +20,6 @@ int wmemcmp(const wchar_t * s1, const wchar_t * s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wmemcpy.c b/src/wchar/wmemcpy.c index 0b583011..f2e56ead 100644 --- a/src/wchar/wmemcpy.c +++ b/src/wchar/wmemcpy.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) @@ -12,3 +14,6 @@ wchar_t * wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wmemcpy_s.c b/src/wchar/wmemcpy_s.c index 348b4139..36b90e3c 100644 --- a/src/wchar/wmemcpy_s.c +++ b/src/wchar/wmemcpy_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wmemcpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2, rsize_t n) @@ -8,3 +10,6 @@ errno_t wmemcpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wmemmove.c b/src/wchar/wmemmove.c index 5a67abe2..0c391377 100644 --- a/src/wchar/wmemmove.c +++ b/src/wchar/wmemmove.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdlib.h> #include "_assert.h" @@ -28,3 +30,6 @@ wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wmemmove_s.c b/src/wchar/wmemmove_s.c index ca30a786..fb108314 100644 --- a/src/wchar/wmemmove_s.c +++ b/src/wchar/wmemmove_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> errno_t wmemmove_s(whcar_t *s1, rsize_t s1max, const wchar_t *s2, rsize_t n) @@ -8,3 +10,6 @@ errno_t wmemmove_s(whcar_t *s1, rsize_t s1max, const wchar_t *s2, rsize_t n) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wmemset.c b/src/wchar/wmemset.c index 9b6ebe6d..65245a77 100644 --- a/src/wchar/wmemset.c +++ b/src/wchar/wmemset.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> wchar_t * wmemset(wchar_t * s, wchar_t c, size_t n) @@ -12,3 +14,6 @@ wchar_t * wmemset(wchar_t * s, wchar_t c, size_t n) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wprintf.c b/src/wchar/wprintf.c index 1d35c1e0..fed68cc0 100644 --- a/src/wchar/wprintf.c +++ b/src/wchar/wprintf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -13,3 +15,6 @@ int wprintf(const wchar_t * restrict format, ...) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wprintf_s.c b/src/wchar/wprintf_s.c index da910af9..45e97719 100644 --- a/src/wchar/wprintf_s.c +++ b/src/wchar/wprintf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int wprintf_s(const wchar_t * restrict format, ...) @@ -13,3 +15,6 @@ int wprintf_s(const wchar_t * restrict format, ...) /* CEXT1(201112) */ + + +#endif diff --git a/src/wchar/wscanf.c b/src/wchar/wscanf.c index acd2a829..ae1362b7 100644 --- a/src/wchar/wscanf.c +++ b/src/wchar/wscanf.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> #include <stdarg.h> @@ -17,3 +19,6 @@ int wscanf(const wchar_t * restrict format, ...) /* STDC(199409) */ + + +#endif diff --git a/src/wchar/wscanf_s.c b/src/wchar/wscanf_s.c index 8850d06f..6dfafc90 100644 --- a/src/wchar/wscanf_s.c +++ b/src/wchar/wscanf_s.c @@ -1,3 +1,5 @@ +#if 0 + #include <wchar.h> int wscanf_s(const wchar_t * restrict format, ...) @@ -13,3 +15,6 @@ int wscanf_s(const wchar_t * restrict format, ...) /* CEXT1(201112) */ + + +#endif |
