From 09031ba8da6f4239d15caf288f3ce53f0d8f728a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20K=C3=BChndel?= Date: Tue, 25 Jul 2023 10:16:55 +0200 Subject: libc: Add files to Doxygen groups --- cpukit/libc/search/qsort.c | 9 +++++++++ cpukit/libc/string/explicit_bzero.c | 9 +++++++++ cpukit/libc/string/flsl.c | 9 +++++++++ cpukit/libc/string/local.h | 9 +++++++++ cpukit/libc/string/memcmp.c | 9 +++++++++ cpukit/libc/string/memcpy.c | 9 +++++++++ cpukit/libc/string/memset.c | 9 +++++++++ cpukit/libc/string/strchr.c | 9 +++++++++ cpukit/libc/string/strcmp.c | 9 +++++++++ cpukit/libc/string/strlen.c | 9 +++++++++ cpukit/libc/string/strrchr.c | 9 +++++++++ 11 files changed, 99 insertions(+) diff --git a/cpukit/libc/search/qsort.c b/cpukit/libc/search/qsort.c index b53400aa8e..6d93f6fb38 100644 --- a/cpukit/libc/search/qsort.c +++ b/cpukit/libc/search/qsort.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---sort an array diff --git a/cpukit/libc/string/explicit_bzero.c b/cpukit/libc/string/explicit_bzero.c index 5124df23ca..88e4137838 100644 --- a/cpukit/libc/string/explicit_bzero.c +++ b/cpukit/libc/string/explicit_bzero.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* $OpenBSD: explicit_bzero.c,v 1.2 2014/06/10 04:17:37 deraadt Exp $ */ /* * Public domain. diff --git a/cpukit/libc/string/flsl.c b/cpukit/libc/string/flsl.c index af6277d1a4..c4080daf94 100644 --- a/cpukit/libc/string/flsl.c +++ b/cpukit/libc/string/flsl.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /*- * Copyright (c) 2017 embedded brains GmbH * All rights reserved. diff --git a/cpukit/libc/string/local.h b/cpukit/libc/string/local.h index ef7ba3918f..d160c8018b 100644 --- a/cpukit/libc/string/local.h +++ b/cpukit/libc/string/local.h @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This header file provides interfaces of the + * C lib. + */ + #include <_ansi.h> #ifndef __rtems__ #include <../ctype/local.h> diff --git a/cpukit/libc/string/memcmp.c b/cpukit/libc/string/memcmp.c index 342fb9fbc8..4169d0fbf1 100644 --- a/cpukit/libc/string/memcmp.c +++ b/cpukit/libc/string/memcmp.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---compare two memory areas diff --git a/cpukit/libc/string/memcpy.c b/cpukit/libc/string/memcpy.c index 52f716b927..8efb4ba14b 100644 --- a/cpukit/libc/string/memcpy.c +++ b/cpukit/libc/string/memcpy.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---copy memory regions diff --git a/cpukit/libc/string/memset.c b/cpukit/libc/string/memset.c index a5ea43ea86..f75c527f65 100644 --- a/cpukit/libc/string/memset.c +++ b/cpukit/libc/string/memset.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---set an area of memory diff --git a/cpukit/libc/string/strchr.c b/cpukit/libc/string/strchr.c index 96f30be044..1ad6787055 100644 --- a/cpukit/libc/string/strchr.c +++ b/cpukit/libc/string/strchr.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---search for character in string diff --git a/cpukit/libc/string/strcmp.c b/cpukit/libc/string/strcmp.c index 894424a690..07930bdd88 100644 --- a/cpukit/libc/string/strcmp.c +++ b/cpukit/libc/string/strcmp.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---character string compare diff --git a/cpukit/libc/string/strlen.c b/cpukit/libc/string/strlen.c index acffa49e14..2b50b8e113 100644 --- a/cpukit/libc/string/strlen.c +++ b/cpukit/libc/string/strlen.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---character string length diff --git a/cpukit/libc/string/strrchr.c b/cpukit/libc/string/strrchr.c index 04897e162a..69f7ade6c2 100644 --- a/cpukit/libc/string/strrchr.c +++ b/cpukit/libc/string/strrchr.c @@ -1,3 +1,12 @@ +/** + * @file + * + * @ingroup libcsupport + * + * @brief This source file contains a definition of + * C lib functions. + */ + /* FUNCTION <>---reverse search for character in string -- cgit v1.2.3