mirror of
https://github.com/fluencelabs/musl
synced 2025-06-11 05:51:48 +00:00
9 lines
122 B
C
9 lines
122 B
C
#define _BSD_SOURCE
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
|
|
char *index(const char *s, int c)
|
|
{
|
|
return strchr(s, c);
|
|
}
|