Lines Matching defs:parse
165 char* parse;
182 parse = line;
184 while(isspace((unsigned char)*parse))
185 parse++;
186 if(strncmp(parse, "$INCLUDE_TEMPFILE", 17) == 0) {
189 char* tid = parse+17;
196 if(strncmp(parse, "TEMPFILE_END", 12) == 0) {
210 char* parse;
229 parse = line;
231 while(isspace((unsigned char)*parse))
232 parse++;
233 if(strncmp(parse, "AUTOTRUST_END", 13) == 0) {
248 char* parse;
269 parse = line;
271 while(isspace((unsigned char)*parse))
272 parse++;
273 if(!*parse || parse[0] == ';')
275 if(strncmp(parse, "COMMANDLINE", 11) == 0) {
276 parse[strlen(parse)-1] = 0; /* strip off \n */
277 add_opts(parse+11, pass_argc, pass_argv);
280 if(strncmp(parse, "AUTOTRUST_FILE", 14) == 0) {
281 spool_auto_file(in, lineno, cfg, parse+14);
284 if(strncmp(parse, "TEMPFILE_NAME", 13) == 0) {
285 spool_temp_file_name(lineno, cfg, parse+13);
288 if(strncmp(parse, "TEMPFILE_CONTENTS", 17) == 0) {
289 spool_temp_file(in, lineno, parse+17);
292 if(strncmp(parse, "CONFIG_END", 10) == 0) {