repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
when building for arm as thumb2 code, also request assembly as thumb
[musl.git]
/
src
/
string
/
index.c
blob
252948f9fd5899808f0639c0fc8990d8b7967a28
1
#define _BSD_SOURCE
2
#include <string.h>
3
#include <strings.h>
4
5
char
*
index
(
const char
*
s
,
int
c
)
6
{
7
return
strchr
(
s
,
c
);
8
}