bdk: add missing header guards

This commit is contained in:
CTCaer
2026-01-29 09:07:22 +02:00
parent 0b41f8129c
commit b297e58bc8
4 changed files with 14 additions and 4 deletions

View File

@@ -16,6 +16,9 @@
#include <utils/types.h>
#ifndef _DIRLIST_H_
#define _DIRLIST_H_
#define DIR_MAX_ENTRIES 64
#define DIR_SHOW_HIDDEN BIT(0)
@@ -29,3 +32,5 @@ typedef struct _dirlist_t
} dirlist_t;
dirlist_t *dirlist(const char *directory, const char *pattern, u32 flags);
#endif