Files
musl/src/string/index.c

9 lines
122 B
C
Raw Normal View History

#define _BSD_SOURCE
2011-02-12 00:22:29 -05:00
#include <string.h>
#include <strings.h>
char *index(const char *s, int c)
{
return strchr(s, c);
}