Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
celibc
/
3e0f8dc6124b5b53a1bf4b5c50f1389b745dde38
/
.
/
string
/
index.c
blob: 16392bb44cb51bf97bea20778cdb12386ff1bd3f [
file
] [
log
] [
blame
] [
raw
]
#include
<string.h>
char
*
index
(
const
char
*
s
,
int
c
)
{
return
strchr
(
s
,
c
);
}