Last change
on this file since 1506 was 1506, checked in by bird, 21 years ago |
@unixroot. header reviews. ++
|
-
Property cvs2svn:cvs-rev
set to
1.2
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
375 bytes
|
Line | |
---|
1 | /* $Id: */
|
---|
2 | /** @file
|
---|
3 | * EMX
|
---|
4 | */
|
---|
5 |
|
---|
6 | #ifndef _FTW_H
|
---|
7 | #define _FTW_H
|
---|
8 |
|
---|
9 | #if defined (__cplusplus)
|
---|
10 | extern "C" {
|
---|
11 | #endif
|
---|
12 |
|
---|
13 | #define FTW_F 0
|
---|
14 | #define FTW_D 1
|
---|
15 | #define FTW_DNR 2
|
---|
16 | #define FTW_NS 3
|
---|
17 |
|
---|
18 | int ftw (__const__ char *,
|
---|
19 | int (*)(__const__ char *, __const__ struct stat *, int),
|
---|
20 | int);
|
---|
21 |
|
---|
22 | #if defined (__cplusplus)
|
---|
23 | }
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #endif /* not _FTW_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.