diff options
author | Marvin Borner | 2020-07-23 13:10:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-23 13:10:22 +0200 |
commit | 99e183a2f569729d722d83503cb851d6198fc1fe (patch) | |
tree | 21e48da4f0220022d17b420de0bf771a97985293 /src/lib/inc/conv.h | |
parent | fa00718c221b64070067bcd64acbc297e4ac699c (diff) |
Some functions for stdlib
Diffstat (limited to 'src/lib/inc/conv.h')
-rw-r--r-- | src/lib/inc/conv.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/inc/conv.h b/src/lib/inc/conv.h new file mode 100644 index 0000000..8295756 --- /dev/null +++ b/src/lib/inc/conv.h @@ -0,0 +1,13 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef CONV_H +#define CONV_H + +#include <def.h> + +int atoi(char *str); +char *htoa(u32 n); +int htoi(char *str); +char *itoa(int n); + +#endif |