Lines Matching refs:args
38 args = parser.parse_args()
39 return args
53 def process_file(args): argument
54 with io.open(args.input, "rb") as infile:
56 with io.open(args.output, "wb") as outfile:
60 if args.name is not None:
61 name = args.name
63 name = filename_to_C_identifier(args.input)
73 if not args.binary:
81 if not args.binary:
89 os.unlink(args.output)
94 args = get_args()
95 process_file(args)