summaryrefslogtreecommitdiff
path: root/src/init/stdlib.h
blob: 3e56beb117409ced73072559e8ec5f67c47469dc (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);

size_t strlen(const char *s);

int printf(const char *fmt, ...);