aboutsummaryrefslogtreecommitdiff
path: root/lib/libk/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libk/string.h')
-rw-r--r--lib/libk/string.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libk/string.h b/lib/libk/string.h
index 46d8636..45b05a5 100644
--- a/lib/libk/string.h
+++ b/lib/libk/string.h
@@ -7,9 +7,8 @@
/**
* Convert int into a string
*/
-char *itoa(char *p, int x, int base);
+char *itoa(char *p, int x, unsigned base);
/**
* Convert unsigned int into a string
*/
-char *utoa(char *p, unsigned x, int base);
-
+char *utoa(char *p, unsigned x, unsigned base);