Chroma/inc/lainlib/string/str.h

19 lines
281 B
C
Raw Permalink Normal View History

#pragma once
2021-07-04 20:47:09 +00:00
#include <stddef.h>
/************************
*** Team Kitty, 2021 ***
*** Chroma ***
***********************/
2021-07-04 20:47:09 +00:00
#ifdef __cplusplus
extern "C" {
#endif
size_t strlen(const char* String);
2021-07-04 20:47:09 +00:00
bool strcmp(char* a, const char* b);
#ifdef __cplusplus
}
#endif