17 lines
203 B
C
17 lines
203 B
C
|
|
#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
|