home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
telecom
/
uucp_442
/
src
/
include
/
getfiles.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-17
|
246b
|
20 lines
/*
* GETFILES.H
*/
#ifndef _GETFILES_H
#define _GETFILES_H
typedef struct dir_list {
struct dir_list *next;
char name[1];
} dir_list;
#ifndef _LIST_SORT_C
extern void *list_sort(void *_list, int (*_cmp)(void *, void *));
#endif
#endif