Re-organisation + stdint.h and stddef.h
This commit is contained in:
16
photon/libc/include/string.h
Normal file
16
photon/libc/include/string.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef STRING_H_
|
||||
#define STRING_H_
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern size_t strlen(const char *str);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user