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