summaryrefslogtreecommitdiff
path: root/src/init/stdlib.h
blob: 5049a2371077c4342e84712d6c6b01839dc94282 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <stddef.h>

extern int __tty_fd;

void *memcpy(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
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, ...);