draw with wife

This commit is contained in:
vrd
2022-12-28 15:55:42 +02:00
parent b3a2787fcd
commit f77f55366e
5 changed files with 46 additions and 32 deletions
+5
View File
@@ -6,3 +6,8 @@ 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);
inline I32 max(I32 a, I32 b)
{
return a >= b ? a : b;
}