ustrtok_r (3) - Linux Manuals
ustrtok_r: Reentrant function to retrieve tokens from a string. Allegro game programming library.
Command to display ustrtok_r
manual in Linux: $ man 3 ustrtok_r
NAME
ustrtok_r - Reentrant function to retrieve tokens from a string. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
char *ustrtok_r(char *s, const char *set, char **last);
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);
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.
Pages related to ustrtok_r
- ustrtok (3) - Retrieves tokens from a string. Allegro game programming library.
- ustrtod (3) - Converts a string into a floating point number. Allegro game programming library.
- ustrtol (3) - Converts a string into an integer. Allegro game programming library.
- ustr (3) - ustr string library functions
- ustr_const (3) - ustr string library constants
- ustrcat (3) - Concatenates a string to another one. Allegro game programming library.
- ustrchr (3) - Finds the first occurrence of a character in a string. Allegro game programming library.
- ustrcmp (3) - Compares two strings. Allegro game programming library.