![]() |
![]()
| ![]() |
![]()
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:
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(3)
|