Files
tft/help.h
T
2022-12-28 14:19:44 +02:00

9 lines
254 B
C

#pragma once
#include "common/basicTypes.h"
unsigned strLen(const char* str);
void strCopy(char *to, const char* from);
bool strComp(const char* firts, const char* second); //0 - diffrent 1 - same
char* mergeStr(const char* first, const char* second);