blob: 2060e37bba202f91c028ee1b7ed4d06d0854ee09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#define _BSD_SOURCE
#include <string.h>
#include <strings.h>
char *index(const char *s, int c)
{
return strchr(s, c);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|