ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/irc_string.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/irc_string.c (file contents):
Revision 5347 by michael, Sun Jan 11 12:42:20 2015 UTC vs.
Revision 6546 by michael, Wed Sep 16 19:55:55 2015 UTC

# 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;

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)