source: tags/syscall-add-simple-foo/minix/lib/other/index.c@ 15

Last change on this file since 15 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 233 bytes
Line 
1#include <lib.h>
2/* index - find first occurrence of a character in a string */
3
4#include <string.h>
5
6char *index(s, charwanted) /* found char, or NULL if none */
7_CONST char *s;
8char charwanted;
9{
10 return(strchr(s, charwanted));
11}
Note: See TracBrowser for help on using the repository browser.