home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_02 / 1002096b < prev    next >
Text File  |  1991-01-14  |  200b  |  14 lines

  1.  
  2.  
  3. /*
  4.         LISTER: a subfunction to link to recursive main for
  5.                 listing wildcard file matches.
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. void subfunc(char *path)
  11. {
  12. printf("\n%s", path);
  13. }
  14.