Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
145 B

  1. /*
  2. * Index: Not Posix. AOJ
  3. */
  4. #include <stdio.h>
  5. char *index (s, c)
  6. char *s, c;
  7. {
  8. for ( ; *s && *s != c; s++ );
  9. return *s ? s : NULL;
  10. }