caos-with-snake/lib/string.h

7 lines
148 B
C
Raw Normal View History

2022-11-14 01:01:22 +03:00
#pragma once
typedef unsigned size_t;
void kmemmove(char* dst, char* src, size_t size);
2022-12-13 00:50:28 +03:00
int strncmp(const char* s1, const char* s2, size_t size);