From f398efa1ac52e967d9673a0efebd9a27f17d60bf Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 11 Dec 2022 21:42:29 +0200 Subject: Generate docs using doxygen instead of sphinx --- lib/stdlib.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/stdlib.h') diff --git a/lib/stdlib.h b/lib/stdlib.h index bd8474d..84d9b2d 100644 --- a/lib/stdlib.h +++ b/lib/stdlib.h @@ -2,6 +2,11 @@ #include +///@defgroup libk libk +///@{ +///@defgroup stdlib stdlib +///@{ + /** * Allocate size bytes and return a pointer to the allocated memory */ @@ -21,3 +26,6 @@ void *memset(void *s, int c, long unsigned n); * Copy n bytes from memory area src to memory area dest. The memory areas must not overlap. */ void *memcpy(void *restrict dest, const void *restrict src, long unsigned n); + +///@} +///@} -- cgit v1.2.1