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