summaryrefslogtreecommitdiff
path: root/dviware/umddvi/libcompat/index.c
blob: 4c5065ee36da49ee80939003892fbeab139f539d (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>

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