Commit 42419926 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

strtok_r: remove tabs

parent 04b2f96e
...@@ -26,27 +26,27 @@ ...@@ -26,27 +26,27 @@
char *strtok_r(char *s, const char *delim, char **save_ptr) char *strtok_r(char *s, const char *delim, char **save_ptr)
{ {
char *token; char *token;
if (s == NULL) if (s == NULL)
s = *save_ptr; s = *save_ptr;
/* Scan leading delimiters. */ /* Scan leading delimiters. */
s += strspn (s, delim); s += strspn (s, delim);
if (*s == '\0') if (*s == '\0')
return NULL; return NULL;
/* Find the end of the token. */ /* Find the end of the token. */
token = s; token = s;
s = strpbrk (token, delim); s = strpbrk (token, delim);
if (s == NULL) if (s == NULL)
/* This token finishes the string. */ /* This token finishes the string. */
*save_ptr = strchr (token, '\0'); *save_ptr = strchr (token, '\0');
else else
{ {
/* Terminate the token and make *SAVE_PTR point past it. */ /* Terminate the token and make *SAVE_PTR point past it. */
*s = '\0'; *s = '\0';
*save_ptr = s + 1; *save_ptr = s + 1;
} }
return token; return token;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment