logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ustrtok_r - Reentrant function to retrieve tokens from a string. Allegro game programming library.

Description

       Reentrant  version  of  ustrtok. The `last' parameter is used to keep track of where the parsing is up to
       and must be a pointer to a char * variable allocated by the user that remains the same while parsing  the
       same string. Example:

          char *word, *last;
          char string[]="some-words with dashes";
          char *temp = ustrdup(string);
          word = ustrtok_r(string, " -", &last);
          while (word) {
             allegro_message("Found `%s'\n", word);
             word = ustrtok_r(NULL, " -", &last);
          }
          free(temp);

Name

       ustrtok_r - Reentrant function to retrieve tokens from a string. Allegro game programming library.

Return Value

       Returns  a  pointer  to  the  token,  or NULL if no more are found. You can free the memory pointed to by
       `last' once NULL is returned.

See Also

ustrtok(3alleg4)

Allegro                                           version 4.4.3                               ustrtok_r(3alleg4)

Synopsis

#include<allegro.h>char*ustrtok_r(char*s,constchar*set,char**last);

See Also