home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / include / getfiles.h < prev    next >
C/C++ Source or Header  |  1994-06-29  |  246b  |  20 lines

  1.  
  2. /*
  3.  *  GETFILES.H
  4.  */
  5.  
  6. #ifndef _GETFILES_H
  7. #define _GETFILES_H
  8.  
  9. typedef struct dir_list {
  10.     struct dir_list *next;
  11.     char name[1];
  12. } dir_list;
  13.  
  14. #ifndef _LIST_SORT_C
  15. extern void *list_sort(void *_list, int (*_cmp)(void *, void *));
  16. #endif
  17.  
  18. #endif
  19.  
  20.