home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
SASC6571.LZX
/
extras
/
dirwalker
/
dirwalker.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1996-12-24
|
335 b
|
12 lines
#ifndef D_DIRWALK_H
#define D_DIRWALK_H
/* Walk a directory tree. Call the 'dirfunc' function pointer on each */
/* directory, and the 'filefunc' function pointer on each file. */
int dirwalker(char *name,
int (*dirfunc)(char *path, char *dir),
int (*filefunc)(char *path, char *file));
#endif