mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-24 10:58:12 +08:00
10 lines
206 B
C
10 lines
206 B
C
#ifndef __COMMAND_LINE_PARSER__
|
|
#define __COMMAND_LINE_PARSER__
|
|
|
|
extern char* read_file_name;
|
|
extern char* output_file_name;
|
|
extern int thread_num;
|
|
|
|
int CommandLine_process (int argc, char *argv[]);
|
|
|
|
#endif |