From 050aa3ab70dd69d1ca8ffe94fd146039a0885550 Mon Sep 17 00:00:00 2001 From: aqua Date: Wed, 24 May 2023 21:29:00 +0300 Subject: Make code ANSI C compatible --- lib/libk/string.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'lib/libk/string.h') 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 -///@} -///@} -- cgit v1.2.1