MicrOS
|
#include "../string.h"
Functions | |
char * | strtok (char *str, const char *delimiters) |
Split string into tokens. More... | |
char* strtok | ( | char * | str, |
const char * | delimiters | ||
) |
Split string into tokens.
A sequence of calls to this function split str into tokens, which are sequences of contiguous characters separated by any of the characters that are part of delimiters.
str | C string to truncate. |
delimeters | C string containing the delimiter characters. |