os/include/strlib.h

9 lines
172 B
C
Raw Permalink Normal View History

2024-07-11 08:56:52 +02:00
#include <stddef.h>
size_t strlen(const char* str);
char to_upper_char(char c);
char to_lower_char(char c);
char* to_lower_str(char* str);
char* to_upper_str(char* str);