caos-with-snake/lib/string.h

8 lines
190 B
C
Raw Normal View History

#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);
void memset(void* b, char c, size_t len);