source:
trunk/src/emx/include/ftw.h@
1323
| Last change on this file since 1323 was 18, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 365 bytes | |
| Rev | Line | |
|---|---|---|
| [18] | 1 | /* ftw.h (emx+gcc) */ |
| 2 | ||
| 3 | #ifndef _FTW_H | |
| 4 | #define _FTW_H | |
| 5 | ||
| 6 | #if defined (__cplusplus) | |
| 7 | extern "C" { | |
| 8 | #endif | |
| 9 | ||
| 10 | #define FTW_F 0 | |
| 11 | #define FTW_D 1 | |
| 12 | #define FTW_DNR 2 | |
| 13 | #define FTW_NS 3 | |
| 14 | ||
| 15 | int ftw (__const__ char *, | |
| 16 | int (*)(__const__ char *, __const__ struct stat *, int), | |
| 17 | int); | |
| 18 | ||
| 19 | #if defined (__cplusplus) | |
