source: trunk/src/emx/include/ftw.h@ 689

Last change on this file since 689 was 18, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 365 bytes
Line 
1/* ftw.h (emx+gcc) */
2
3#ifndef _FTW_H
4#define _FTW_H
5
6#if defined (__cplusplus)
7extern "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
15int ftw (__const__ char *,
16 int (*)(__const__ char *, __const__ struct stat *, int),
17 int);
18
19#if defined (__cplusplus)
20}
21#endif
22
23#endif /* not _FTW_H */
Note: See TracBrowser for help on using the repository browser.