blob: a3a8b64f54432f2cfb219d4a1e6d132325c8ebde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <stddef.h>
// TODO since this is shared with the kernel, maybe i could turn this into an
// stb-style header file
int memcmp(const void *s1, const void *s2, size_t n);
int strcmp(const char *s1, const char *s2);
size_t strlen(const char *s);
int printf(const char *fmt, ...);
|