blob: 2e9d71bfd1898a878846faaba0e522460e0019f1 [file] [log] [blame]
#pragma once
#include <stdint.h>
void *memset(void *dst, int c, size_t n);
void *memcpy(void *dst, const void *src, size_t n);
int memcmp(const void *a, const void *b, size_t n);
size_t strlen(const char *s);