doxygen docs: Add missing group braces

Without them, these Evil docs had no group and therefore didn't appear anywhere.
This commit is contained in:
Xavi Artigas 2020-04-29 17:32:41 +02:00 committed by Stefan Schmidt
parent ae6b907ccb
commit 55184ba832
2 changed files with 9 additions and 2 deletions

View File

@ -9,7 +9,7 @@
* @ingroup Evil
*
* This header provides functions ported from Unix in stdio.h.
*
* @{
*/
#define EVIL_PATH_SEP_SWAP(p, s1, s2) \
@ -56,5 +56,8 @@ EAPI int evil_rename(const char *src, const char *dst);
*/
EAPI int evil_mkdir(const char *dirname, mode_t mode);
/**
* @}
*/
#endif /* __EVIL_STDIO_H__ */

View File

@ -10,7 +10,7 @@
*
* This header provides functions ported from Unix in string.h.
*
*
* @{
*/
@ -63,4 +63,8 @@ EAPI char *strcasestr(const char *haystack, const char *needle);
*/
EAPI char *strsep(char **stringp, const char *delim);
/**
* @}
*/
#endif /* __EVIL_STRING_H__ */