aboutsummaryrefslogtreecommitdiff
path: root/include/libc.h
blob: 133534f4d2b150d55dbe78d6b8235a2b4a3ba50e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <u.h>

void    *memset(void*, int, intptr);
void    *memcopy(void*, void*, intptr);
void    *memmove(void*, void*, intptr);
int      memcmp(void*, void*, intptr);

int      strlen(byte* s);

error    printf(byte* fmt, ...);