home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / dirutl / touch.arc / EXPARG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-27  |  321 b   |  19 lines

  1.  
  2. /*    exparg.h    header file for exparg(), the routine that performs
  3.  *            wild-card expansion on filespecs in the command line
  4.  *            parameters
  5.  */
  6.  
  7. #ifndef EXP_ARG
  8. #define EXP_ARG
  9.  
  10. #ifdef __STDC__
  11. #define _Cdecl
  12. #else
  13. #define _Cdecl    cdecl
  14. #endif
  15.  
  16. char **_Cdecl exparg (int *pargc, char *argv []);
  17.  
  18. #endif
  19.