cd215b2545
1. Remove components.h file; 2. Add libc_* files for standard libc definitions; 3. Add rtdbg.h file for simple debug log; 4. Add single list implementation; 5. Change the 'rt_uint8_t' type of cmd to 'int'.
9 lines
159 B
C
9 lines
159 B
C
#ifndef LIBC_DIRENT_H__
|
|
#define LIBC_DIRENT_H__
|
|
|
|
#define DT_UNKNOWN 0x00
|
|
#define DT_REG 0x01
|
|
#define DT_DIR 0x02
|
|
|
|
#endif
|