home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / tools / pep / bdmg.h < prev    next >
C/C++ Source or Header  |  1989-12-28  |  686b  |  28 lines

  1. /* bdmg.h  1989 december 11 [gh]
  2. +-----------------------------------------------------------------------------
  3. | Abstract:
  4. |    CP/M and DOS types and functions exported by bdmg.c
  5. |
  6. | History:
  7. |    11 dec 89 [gh] Latest update.
  8. |
  9. | See main module for more comments.
  10. +---------------------------------------------------------------------------*/
  11.  
  12. /*---( types )--------------------------------------------------------------*/
  13.  
  14. struct DIRLIST {
  15.    char           *fnam;
  16.    struct DIRLIST *next;
  17. }; /* DIRLIST */
  18.  
  19.  
  20. /*---( prototypes )---------------------------------------------------------*/
  21.  
  22. struct DIRLIST *expwildcard();
  23. void dispwildcard();
  24.  
  25.  
  26. /* EOH */
  27.  
  28.