aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/lib.h
diff options
context:
space:
mode:
authorMarvin Borner2019-11-01 13:13:40 +0100
committerMarvin Borner2019-11-01 13:13:40 +0100
commit1994399448a298d3fc5474b3ca6272e1c699c7df (patch)
tree591e4f14fe2e8100343d7c80c04df31815509223 /src/kernel/lib/lib.h
parentef8652520516e9c8dfdf8c1030319ea9634975d5 (diff)
Fixed VGA buffer logging
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r--src/kernel/lib/lib.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h
index 420dd5b..5cc3d1f 100644
--- a/src/kernel/lib/lib.h
+++ b/src/kernel/lib/lib.h
@@ -33,6 +33,14 @@ void strcat(char *dest, const char *src);
void strcpy(char *dest, const char *src);
/**
+ * Convert an integer to a char array (string)
+ * @param i The integer
+ * @param b The char array
+ * @return The char pointer
+ */
+char *itoa(int i, char b[]);
+
+/**
* Copy n data from src to dest
* @param dest The destination array pointer
* @param src The source array pointer of the data