Query: ustrtok_r
OS: centos
Section: 3alleg4
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ustrtok_r(3alleg4) Allegro manual ustrtok_r(3alleg4)NAMEustrtok_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);DESCRIPTIONReentrant 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' ", word); word = ustrtok_r(NULL, " -", &last); } free(temp);RETURN VALUEReturns 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 ALSOustrtok(3alleg4) Allegro version 4.4.2 ustrtok_r(3alleg4)
Related Man Pages |
---|
ustrtok(3alleg4) - debian |
ustrtok(3alleg4) - suse |
get_config_string(3alleg4) - centos |
ustrtok(3alleg4) - netbsd |
ustrtok(3alleg4) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Best performance UNIX just for HOST Virtualization? |
How to increment version inside a file? |
Shopt -s histappend |
Controlling user input |
[TIP] Processing YAML files with yq |