aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib.h
blob: 62bd51c50904172ca6bf5cfbe288586df4f520d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MELVIX_STDLIB_H
#define MELVIX_STDLIB_H

#include <stdint.h>

#ifndef MELVIX_STRING_H

#include <lib/string.h>

#endif

char *itoa(int n);

int atoi(char *str);

char *htoa(u32 n);

int htoi(char *str);

#endif