aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/string.c')
-rw-r--r--src/kernel/lib/string.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c
index ef746d6..1e41d15 100644
--- a/src/kernel/lib/string.c
+++ b/src/kernel/lib/string.c
@@ -34,20 +34,3 @@ char *strcpy(char *dest, const char *src) {
dest[i] = 0;
return dest;
}
-
-void *itoa(int i, char *b, int base) {
- int temp_i;
- temp_i = i;
- int stringLen = 1;
-
- while ((int) temp_i / base != 0) {
- temp_i = (int) temp_i / base;
- stringLen++;
- }
-
- temp_i = i;
- do {
- *(b + stringLen - 1) = (temp_i % base) + '0';
- temp_i = (int) temp_i / base;
- } while (stringLen--);
-} \ No newline at end of file