home *** CD-ROM | disk | FTP | other *** search
-
- /* exparg.h header file for exparg(), the routine that performs
- * wild-card expansion on filespecs in the command line
- * parameters
- */
-
- #ifndef EXP_ARG
- #define EXP_ARG
-
- #ifdef __STDC__
- #define _Cdecl
- #else
- #define _Cdecl cdecl
- #endif
-
- char **_Cdecl exparg (int *pargc, char *argv []);
-
- #endif