mirror of
https://github.com/cowmonk/cowos.git
synced 2025-10-27 22:43:26 +00:00
8 lines
108 B
C
8 lines
108 B
C
#ifndef STRING_H
|
|
#define STRING_H
|
|
|
|
#include <stddef.h>
|
|
|
|
size_t strlen(const char* str);
|
|
|
|
#endif // STRING_H
|