Skip to content

Commit 32ec2fa

Browse files
committed
posix: c_lib_ext: fnmatch: added Doxygen
Added Doxygen on new functions and on fnmatch function Signed-off-by: Harun Spago <harun.spago.code@gmail.com>
1 parent b96116f commit 32ec2fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/zephyr/posix/fnmatch.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838

3939
#define FNM_NOMATCH 1 /**< Match failed */
4040

41-
#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
42-
#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
43-
#define FNM_PERIOD 0x04 /* Period must be matched by period. */
44-
#define FNM_CASEFOLD 0x08 /* Pattern is matched case-insensitive */
45-
#define FNM_LEADING_DIR 0x10 /* Ignore /<tail> after Imatch. */
41+
#define FNM_NOESCAPE 0x01 /**< Disable backslash escaping */
42+
#define FNM_PATHNAME 0x02 /**< Slash must be matched by slash */
43+
#define FNM_PERIOD 0x04 /**< Period must be matched by period */
44+
#define FNM_CASEFOLD 0x08 /**< Pattern is matched case-insensitive */
45+
#define FNM_LEADING_DIR 0x10 /**< Only match the initial segment of a string up to the first '/' */
4646

4747
#ifdef __cplusplus
4848
extern "C" {

0 commit comments

Comments
 (0)