Lines Matching defs:define
63 "usage: %s input output exclude name [label [define [remove_tabs]]]\n";
86 #define IO_ERR (1)
87 #define INVALID_INPUT_FILE (2)
88 #define INVALID_PARAMS (3)
92 #define MAX_WIDTH (72)
322 * define If given, a preprocessor macro that should be used as a guard
323 * for the char array and its label. If define is given, then
325 * "#if <define>" as part of the generated source file, and
327 * "endif // <define>".
341 const char* define;
361 define = has_define ? argv[6] : "";
374 if (has_define && fprintf(out, bc_gen_ifdef, define) < 0) goto err;
499 err = (has_define && fprintf(out, bc_gen_endif, define) < 0);