Skip to content

Commit

Permalink
P2937R0 Freestanding: Remove strtok
Browse files Browse the repository at this point in the history
  • Loading branch information
burblebee committed Nov 15, 2023
1 parent ecbeb5a commit 511a91e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/strings.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5516,7 +5516,7 @@
size_t strspn(const char* s1, const char* s2); // freestanding
const char* strstr(const char* s1, const char* s2); // freestanding; see \ref{library.c}
char* strstr(char* s1, const char* s2); // freestanding; see \ref{library.c}
char* strtok(char* s1, const char* s2); // freestanding
char* strtok(char* s1, const char* s2);
void* memset(void* s, int c, size_t n); // freestanding
char* strerror(int errnum);
size_t strlen(const char* s); // freestanding
Expand Down
2 changes: 1 addition & 1 deletion source/support.tex
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@
#define @\defnlibxname{cpp_lib_freestanding_char_traits}@ 202306L // freestanding, also in \libheader{string}
#define @\defnlibxname{cpp_lib_freestanding_charconv}@ 202306L // freestanding, also in \libheader{charconv}
#define @\defnlibxname{cpp_lib_freestanding_cstdlib}@ 202306L // freestanding, also in \libheader{cstdlib}, \libheader{cmath}
#define @\defnlibxname{cpp_lib_freestanding_cstring}@ 202306L // freestanding, also in \libheader{cstring}
#define @\defnlibxname{cpp_lib_freestanding_cstring}@ 202311L // freestanding, also in \libheader{cstring}
#define @\defnlibxname{cpp_lib_freestanding_cwchar}@ 202306L // freestanding, also in \libheader{cwchar}
#define @\defnlibxname{cpp_lib_freestanding_errc}@ 202306L
// freestanding, also in \libheader{cerrno}, \libheader{system_error}
Expand Down

0 comments on commit 511a91e

Please sign in to comment.