]> icculus.org git repositories - btb/d2x.git/blob - misc/parstest.c
use new GET_INTEL_* macros
[btb/d2x.git] / misc / parstest.c
1
2 #include <stdio.h>
3
4 #include "parsarg.h"
5
6
7 handle_arg(char *a)
8 {
9         printf("%s\n",a);
10 }
11
12
13 main(int argc,char **argv)
14 {
15
16         parse_args(argc-1,argv+1,handle_arg,PA_EXPAND);
17 }
18
19 ΓΏ