9 lines
149 B
C
9 lines
149 B
C
#ifndef ULIB_STRING_STRING_H_
|
|
#define ULIB_STRING_STRING_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
size_t string_len(const char *s);
|
|
|
|
#endif // ULIB_STRING_STRING_H_
|