Parent Directory
|
Revision Log
Initial import.
| 1 | james | 16 | /* wstring.h */ |
| 2 | |||
| 3 | #ifndef wstring_H | ||
| 4 | #define wstring_H | ||
| 5 | |||
| 6 | #include <stddef.h> | ||
| 7 | #include <stdio.h> | ||
| 8 | |||
| 9 | /*wchar_t *wstrchr(wchar_t const *str, wchar_t c); | ||
| 10 | int wstrcmp(wchar_t const *str1, wchar_t const *str2); | ||
| 11 | wchar_t *wstrcpy(wchar_t *str1, wchar_t const *str2); | ||
| 12 | size_t wstrlen(wchar_t *str); | ||
| 13 | wchar_t *wstrncpy(wchar_t *str1, wchar_t const *str2, unsigned int count);*/ | ||
| 14 | int wfputc(wchar_t c, FILE *stream); | ||
| 15 | int wfputs(wchar_t *str, FILE *stream); | ||
| 16 | |||
| 17 | #endif |
| ViewVC Help | |
| Powered by ViewVC 1.1.26 |