mirror of
https://github.com/cowmonk/cowos.git
synced 2026-03-13 16:43:29 +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
|