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