This website requires JavaScript.
Explore
Help
Register
Sign In
yystopf
/
openharmony_kernel_liteos_m
Watch
1
Star
0
Fork
You've already forked openharmony_kernel_liteos_m
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
b244ad4ad0
openharmony_kernel_liteos_m
/
kal
/
posix
/
musl_src
/
string
/
strrchr.c
7 lines
101 B
C
Raw
Blame
History
#
include
<string.h>
char
*
strrchr
(
const
char
*
s
,
int
c
)
{
return
__memrchr
(
s
,
c
,
strlen
(
s
)
+
1
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink