summaryrefslogtreecommitdiffstats
path: root/kernel/stdlib.h
blob: 58bc3fa1260b39a69c96fd8efdbd358e40b772d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STDLIB_H_
#define _STDLIB_H_

#include "types.h"

void *memset(void *s, int c, size_t n);

void *memcpy(void *dest, void *src, size_t n);

int strncmp(const char *s1, const char *s2, size_t n);

#endif