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>_fstrchr() find a character in a string (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrchr()              Find a Character in a String (Model Independent)

 #include   <string.h>

 char _far *_fstrchr(string, c);
 char _far *string;             String to search
 int c;                         Character to find

    This is the model independent version of strchr(); it searches
    string for the character c, returning a pointer to the
    first occurance of the character if it is found. See strchr() for
    more information.

    Returns:    A pointer to the character, if found; NULL otherwise.

 Portability:   Not supported by the ANSI standard.


See Also: strcat() strchr() strncat() strncmp() strncpy() strrchr()

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