summaryrefslogtreecommitdiff
path: root/src/strings/index.c
blob: 22126d815a71a2217c534dc54a1acc65bde43598 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <strings.h>
#include "string.h"

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

/*
XOPEN(400,700)
*/