11 lines
136 B
C
11 lines
136 B
C
#ifndef _DIR_ENTRY_H
|
|
#define _DIR_ENTRY_H
|
|
|
|
#include <path_defs.h>
|
|
|
|
struct dir_entry {
|
|
char path[PATH_MAX];
|
|
};
|
|
|
|
#endif // _DIR_ENTRY_H
|