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