Sign in
mojo
/
mojo-tools
/
9f2dce8f51c146590b0e63ce584c112a982dab1c
/
.
/
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
);
}