aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdlib.h
blob: 3ccdec2d20e6db1f8c306b7d00a2b72bbfbf9cfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef MELVIX_STDLIB_H
#define MELVIX_STDLIB_H

#include <stdint.h>

#ifndef MELVIX_ALLOC_H

#include <mlibc/stdlib/liballoc.h>

#endif

#ifndef MELVIX_STRING_H

#include <mlibc/string.h>

#endif

char *itoa(int n);

int atoi(char *str);

char *htoa(uint32_t n);

int htoi(char *str);

#endif