Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
string
/
index.c
blob: 252948f9fd5899808f0639c0fc8990d8b7967a28 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
char
*
index
(
const
char
*
s
,
int
c
)
{
return
strchr
(
s
,
c
);
}