summaryrefslogtreecommitdiff
path: root/src/strings/index.c
blob: 5531451faac454416c6c0aac8ed9030e0d1b5e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <string.h>
#include <strings.h>

char *index(const char *s, int c)
{
	return strchr(s, c);
}

/*
XOPEN(400,700)
*/


#endif