|
5844 | 5844 | int strncmp(const char* s1, const char* s2, size_t n);
|
5845 | 5845 | size_t strxfrm(char* s1, const char* s2, size_t n);
|
5846 | 5846 | const void* memchr(const void* s, int c, size_t n); // see \ref{library.c}
|
5847 |
| - void* memchr(void* s, int c, size_t n) // see \ref{library.c} |
5848 |
| - const char* strchr(const char* s, int c) // see \ref{library.c} |
5849 |
| - char* strchr(char* s, int c) // see \ref{library.c} |
| 5847 | + void* memchr(void* s, int c, size_t n); // see \ref{library.c} |
| 5848 | + const char* strchr(const char* s, int c); // see \ref{library.c} |
| 5849 | + char* strchr(char* s, int c); // see \ref{library.c} |
5850 | 5850 | size_t strcspn(const char* s1, const char* s2);
|
5851 |
| - const char* strpbrk(const char* s1, const char* s2) // see \ref{library.c} |
5852 |
| - char* strpbrk(char* s1, const char* s2) // see \ref{library.c} |
5853 |
| - const char* strrchr(const char* s, int c) // see \ref{library.c} |
5854 |
| - char* strrchr(char* s, int c) // see \ref{library.c} |
| 5851 | + const char* strpbrk(const char* s1, const char* s2); // see \ref{library.c} |
| 5852 | + char* strpbrk(char* s1, const char* s2); // see \ref{library.c} |
| 5853 | + const char* strrchr(const char* s, int c); // see \ref{library.c} |
| 5854 | + char* strrchr(char* s, int c); // see \ref{library.c} |
5855 | 5855 | size_t strspn(const char* s1, const char* s2);
|
5856 |
| - const char* strstr(const char* s1, const char* s2) // see \ref{library.c} |
5857 |
| - char* strstr(char* s1, const char* s2) // see \ref{library.c} |
| 5856 | + const char* strstr(const char* s1, const char* s2); // see \ref{library.c} |
| 5857 | + char* strstr(char* s1, const char* s2); // see \ref{library.c} |
5858 | 5858 | char* strtok(char* s1, const char* s2);
|
5859 | 5859 | void* memset(void* s, int c, size_t n);
|
5860 | 5860 | char* strerror(int errnum);
|
|
6008 | 6008 | int wcsncmp(const wchar_t* s1, const wchar_t* s2, size_t n);
|
6009 | 6009 | size_t wcsxfrm(wchar_t* s1, const wchar_t* s2, size_t n);
|
6010 | 6010 | int wmemcmp(const wchar_t* s1, const wchar_t* s2, size_t n);
|
6011 |
| - const wchar_t* wcschr(const wchar_t* s, wchar_t c) // see \ref{library.c} |
6012 |
| - wchar_t* wcschr(wchar_t* s, wchar_t c) // see \ref{library.c} |
| 6011 | + const wchar_t* wcschr(const wchar_t* s, wchar_t c); // see \ref{library.c} |
| 6012 | + wchar_t* wcschr(wchar_t* s, wchar_t c); // see \ref{library.c} |
6013 | 6013 | size_t wcscspn(const wchar_t* s1, const wchar_t* s2);
|
6014 |
| - const wchar_t* wcspbrk(const wchar_t* s1, const wchar_t* s2) // see \ref{library.c} |
6015 |
| - wchar_t* wcspbrk(wchar_t* s1, const wchar_t* s2) // see \ref{library.c} |
6016 |
| - const wchar_t* wcsrchr(const wchar_t* s, wchar_t c) // see \ref{library.c} |
6017 |
| - wchar_t* wcsrchr(wchar_t* s, wchar_t c) // see \ref{library.c} |
| 6014 | + const wchar_t* wcspbrk(const wchar_t* s1, const wchar_t* s2); // see \ref{library.c} |
| 6015 | + wchar_t* wcspbrk(wchar_t* s1, const wchar_t* s2); // see \ref{library.c} |
| 6016 | + const wchar_t* wcsrchr(const wchar_t* s, wchar_t c); // see \ref{library.c} |
| 6017 | + wchar_t* wcsrchr(wchar_t* s, wchar_t c); // see \ref{library.c} |
6018 | 6018 | size_t wcsspn(const wchar_t* s1, const wchar_t* s2);
|
6019 |
| - const wchar_t* wcsstr(const wchar_t* s1, const wchar_t* s2) // see \ref{library.c} |
6020 |
| - wchar_t* wcsstr(wchar_t* s1, const wchar_t* s2) // see \ref{library.c} |
| 6019 | + const wchar_t* wcsstr(const wchar_t* s1, const wchar_t* s2); // see \ref{library.c} |
| 6020 | + wchar_t* wcsstr(wchar_t* s1, const wchar_t* s2); // see \ref{library.c} |
6021 | 6021 | wchar_t* wcstok(wchar_t* s1, const wchar_t* s2, wchar_t** ptr);
|
6022 |
| - const wchar_t* wmemchr(const wchar_t* s, wchar_t c, size_t n) // see \ref{library.c} |
6023 |
| - wchar_t* wmemchr(wchar_t* s, wchar_t c, size_t n) // see \ref{library.c} |
| 6022 | + const wchar_t* wmemchr(const wchar_t* s, wchar_t c, size_t n); // see \ref{library.c} |
| 6023 | + wchar_t* wmemchr(wchar_t* s, wchar_t c, size_t n); // see \ref{library.c} |
6024 | 6024 | size_t wcslen(const wchar_t* s);
|
6025 | 6025 | wchar_t* wmemset(wchar_t* s, wchar_t c, size_t n);
|
6026 | 6026 | size_t wcsftime(wchar_t* s, size_t maxsize, const wchar_t* format, const struct tm* timeptr);
|
|
0 commit comments