Files
photon/photon/libc/include/string.h

17 lines
203 B
C
Raw Normal View History

#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