# | Line 70 | Line 70 | strip_tabs(char *dest, const char *src, | |
---|---|---|
70 | } | |
71 | ||
72 | /* | |
73 | < | * strtoken - walk through a string of tokens, using a set of separators |
73 | > | * strtok_r - walk through a string of tokens, using a set of separators |
74 | * argv 9/90 | |
75 | * | |
76 | */ | |
77 | #ifndef HAVE_STRTOK_R | |
78 | char * | |
79 | < | strtoken(char **save, char *str, const char *fs) |
79 | > | strtok_r(char *str, const char *fs, char **save) |
80 | { | |
81 | char *pos = *save; /* keep last position across calls */ | |
82 | char *tmp = NULL; |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |