Skip to content

Commit 578c39a

Browse files
dgrunwald-qttkoeppe
authored andcommitted
[cstring.syn], [cwchar.syn] Add a bunch of missing semicolons
1 parent 07e4d9c commit 578c39a

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

source/strings.tex

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5844,17 +5844,17 @@
58445844
int strncmp(const char* s1, const char* s2, size_t n);
58455845
size_t strxfrm(char* s1, const char* s2, size_t n);
58465846
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}
58505850
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}
58555855
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}
58585858
char* strtok(char* s1, const char* s2);
58595859
void* memset(void* s, int c, size_t n);
58605860
char* strerror(int errnum);
@@ -6008,19 +6008,19 @@
60086008
int wcsncmp(const wchar_t* s1, const wchar_t* s2, size_t n);
60096009
size_t wcsxfrm(wchar_t* s1, const wchar_t* s2, size_t n);
60106010
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}
60136013
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}
60186018
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}
60216021
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}
60246024
size_t wcslen(const wchar_t* s);
60256025
wchar_t* wmemset(wchar_t* s, wchar_t c, size_t n);
60266026
size_t wcsftime(wchar_t* s, size_t maxsize, const wchar_t* format, const struct tm* timeptr);

0 commit comments

Comments
 (0)