caos-with-snake/lib/string.h
2022-12-13 19:06:51 +03:00

7 lines
148 B
C

#pragma once
typedef unsigned size_t;
void kmemmove(char* dst, char* src, size_t size);
int strncmp(const char* s1, const char* s2, size_t size);