Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strchrnul.h
Go to the documentation of this file.
1 #ifndef STRCHRNUL_H__
2 #define STRCHRNUL_H__
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif //__cplusplus
7 
8 // TODO: document
9 char* __strchrnul(const char* s, int c);
10 
11 #ifdef __cplusplus
12 }
13 #endif //__cplusplus
14 
15 #endif // STRCHRNUL_H__
char * __strchrnul(const char *s, int c)
Definition: strchrnul.c:13