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>_fstrspn() find first substring (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrspn()              Find First Substring (Model Independent)

 #include   <string.h>

 size_t _fstrspn(string1, string2);
 char _far *string1;            String to search
 char _far *string2;            String of characters to search for

    This is the model independent version of strspn(); it returns the
    index of the first character in string1 that does not occur in
    string2. See strspn() for more information.

    Returns:    A pointer to the first occurance of a character in
                  string1 that does not occur in string1.

 Portability:   Not supported by the ANSI standard.


See Also: strcspn() strncmp() strnicmp() strspn()

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