Sign in
mojo
/
mojo-testing
/
b237bca1446a4ef1006f2804ecdfeb1a0cf286ae
/
.
/
fusl
/
src
/
string
/
index.c
blob: 3b6e49d9408323acd9db0f0c6215850deeb23b4f [
file
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
char
*
index
(
const
char
*
s
,
int
c
)
{
return
strchr
(
s
,
c
);
}