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>_fstrpbrk() scan for char from set (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrpbrk()             Scan for Char From Set (Model Independent)

 #include   <string.h>

 char _far *_fstrpbrk(string1, string2);
 char _far *string1;            Source string
 char _far *string2;            Character set

    This is the model independent version of strfbrk(); it finds the
    first occurance of any character from string2 in string1 and
    returns a pointer to it. See strpbrk() for more information.

    Returns:    A pointer to the first occurance of any character in
                  string1 that also appears in string2.

 Portability:   Not supported by the ANSI standard.


See Also: strchr() strpbrk() strrchr()

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