aboutsummaryrefslogtreecommitdiff
path: root/include/libc.h
blob: 7d42f979c7b8cd287df21cef1de840d6455465c2 (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, ...);