doxygen: add @brief and capitalize
Remove function name from comment and add @brief instead.
Also capitilize first letter.
Change-Id: Ib708b49bf02e5bc89b0066637a55874e659637e0
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
diff --git a/lib/libc/minimal/source/string/string.c b/lib/libc/minimal/source/string/string.c
index b2d81b9..cdd7137 100644
--- a/lib/libc/minimal/source/string/string.c
+++ b/lib/libc/minimal/source/string/string.c
@@ -34,7 +34,7 @@
/**
*
- * strcpy - copy a string
+ * @brief Copy a string
*
* @return pointer to destination buffer <d>
*/
@@ -56,7 +56,7 @@
/**
*
- * strncpy - copy part of a string
+ * @brief Copy part of a string
*
* @return pointer to destination buffer <d>
*/
@@ -83,7 +83,7 @@
/**
*
- * strchr - string scanning operation
+ * @brief String scanning operation
*
* @return pointer to 1st instance of found byte, or NULL if not found
*/
@@ -100,7 +100,7 @@
/**
*
- * strlen - get string length
+ * @brief Get string length
*
* @return number of bytes in string <s>
*/
@@ -119,7 +119,7 @@
/**
*
- * strcmp - compare two strings
+ * @brief Compare two strings
*
* @return negative # if <s1> < <s2>, 0 if <s1> == <s2>, else positive #
*/
@@ -136,7 +136,7 @@
/**
*
- * strncmp - compare part of two strings
+ * @brief Compare part of two strings
*
* @return negative # if <s1> < <s2>, 0 if <s1> == <s2>, else positive #
*/
@@ -154,7 +154,7 @@
/**
*
- * memcmp - compare two memory areas
+ * @brief Compare two memory areas
*
* @return negative # if <m1> < <m2>, 0 if <m1> == <m2>, else positive #
*/
@@ -177,7 +177,7 @@
/**
*
- * memmove - copy bytes in memory with overlapping areas
+ * @brief Copy bytes in memory with overlapping areas
*
* @return pointer to destination buffer <d>
*/
@@ -212,7 +212,7 @@
/**
*
- * memcpy - copy bytes in memory
+ * @brief Copy bytes in memory
*
* @return pointer to start of destination buffer
*/
@@ -262,7 +262,7 @@
/**
*
- * memset - set bytes in memory
+ * @brief Set bytes in memory
*
* @return pointer to start of buffer
*/