#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);