Chroma/inc/lainlib/string/str.h

11 lines
211 B
C
Raw Permalink Normal View History

#pragma once
2021-07-04 20:47:09 +00:00
#include <stddef.h>
/************************
*** Team Kitty, 2021 ***
*** Chroma ***
***********************/
size_t strlen(const char* String);
2022-07-10 00:01:49 +00:00
bool strcmp(char* a, const char* b);