mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-21 16:54:39 +00:00
15 lines
394 B
C
15 lines
394 B
C
/****************************************************************************
|
|
*
|
|
* Description: prototypes of cmdline.c
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef __SW_BD
|
|
#define EXPQUAL __stdcall
|
|
#else
|
|
#define EXPQUAL
|
|
#endif
|
|
|
|
extern char * EXPQUAL ParseCmdline( const char **cmdline, int * );
|
|
extern void EXPQUAL CmdlineFini( void );
|