aboutsummaryrefslogtreecommitdiff
path: root/lib/libk/string.h
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-05-24 21:29:00 +0300
committeraqua <aqua@iserlohn-fortress.net>2023-05-24 21:29:29 +0300
commit050aa3ab70dd69d1ca8ffe94fd146039a0885550 (patch)
tree4002a7a0bb86580cc6a2adc2eee45891ee068540 /lib/libk/string.h
parentPlace compiled objects and dependencies in build/ (diff)
downloadkernel-050aa3ab70dd69d1ca8ffe94fd146039a0885550.tar.xz
Make code ANSI C compatible
Diffstat (limited to 'lib/libk/string.h')
-rw-r--r--lib/libk/string.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libk/string.h b/lib/libk/string.h
index c8196c8..46d8636 100644
--- a/lib/libk/string.h
+++ b/lib/libk/string.h
@@ -1,17 +1,9 @@
#pragma once
-///@defgroup libk libk
-///@{
-///@defgroup string string
-///@{
-
#define OCTAL 8
#define DECIMAL 10
#define HEX 16
-#ifdef __cplusplus
-extern "C" {
-#endif
/**
* Convert int into a string
*/
@@ -20,9 +12,4 @@ char *itoa(char *p, int x, int base);
* Convert unsigned int into a string
*/
char *utoa(char *p, unsigned x, int base);
-#ifdef __cplusplus
-}
-#endif
-///@}
-///@}