Lines Matching refs:newstring
2055 @deftypefun {char *} strtok (char *restrict @var{newstring}, const char *restrict @var{delimiters})
2061 The string to be split up is passed as the @var{newstring} argument on
2065 the @var{newstring} argument. Calling @code{strtok} with another
2066 non-null @var{newstring} argument reinitializes the state information.
2076 original string @var{newstring} is overwritten by a null byte, and the
2077 pointer to the beginning of the token in @var{newstring} is returned.
2084 If the end of the string @var{newstring} is reached, or if the remainder of
2093 @deftypefun {wchar_t *} wcstok (wchar_t *@var{newstring}, const wchar_t *@var{delimiters}, wchar_t …
2099 The string to be split up is passed as the @var{newstring} argument on
2103 null pointer as the @var{newstring} argument, which causes the pointer
2113 string @var{newstring} is overwritten by a null wide character, the
2115 and the pointer to the beginning of the token in @var{newstring} is
2123 If the end of the wide string @var{newstring} is reached, or
2183 @deftypefun {char *} strtok_r (char *@var{newstring}, const char *@var{delimiters}, char **@var{sav…
2191 @code{strtok_r} with a null pointer for @var{newstring} and leaving
2203 @var{newstring} argument replaced by the @var{save_ptr} argument. The