14 lines
257 B
C
14 lines
257 B
C
|
#include "../lib/carg-parse/carg-parse.h"
|
||
|
#include "./asm_const.h"
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
carg_parse_data* args = carg_parse(argc, argv);
|
||
|
|
||
|
carg_parse_free(args);
|
||
|
|
||
|
return 0;
|
||
|
}
|