Files
my-os-project2/ulib/string/string.h
2025-09-04 23:20:30 +02:00

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_