Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b>_fstrtok() finds next token in string (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrtok()              Finds Next Token in String (Model Independent)

 #include   <string.h>

 char _far *_fstrtok(string1, string2);
 char _far *string1;            String containing token(s)
 char _far *string2;            Set of delimiter characters

    This is the model independent version of strtok(); it reads
    string1 as a set of tokens and string2 as a set of delimiter
    characters. It returns a pointer to the first token in string1.
    See strtok() for more information.

    Returns:    A pointer to the first token in string1.

    Notes:      Successive calls return the following tokens.

 Portability:   Not supported by the ANSI standard.


See Also: strcspn() strncmp() strspn() strstr() strtok()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson