summaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib.h
blob: 319cf261c24f276e1ffaa3ade00796cc888e64e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DEF_STDLIB_H
#define DEF_STDLIB_H

#include <types.h>

void *memcpy(void *dest, const void *src, int count);
uint8_t *memset(uint8_t *dest, uint8_t val, int count);
uint16_t *memsetw(uint16_t *dest, uint16_t val, int count);
int strlen(const char *str);

#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))

#endif