mirror of
https://github.com/cowmonk/cowos.git
synced 2026-03-14 00:53:29 +00:00
9 lines
108 B
C
9 lines
108 B
C
|
|
#ifndef STRING_H
|
||
|
|
#define STRING_H
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
size_t strlen(const char* str);
|
||
|
|
|
||
|
|
#endif // STRING_H
|