203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
Blob bOut = empty_blob;
const char * zInfile = "-";
const char * zOutfile = "-";
const int fWithDiv = find_option("div",0,0)!=0;
const int fTh1 = find_option("th",0,0)!=0;
const int fNosvg = find_option("th-nosvg",0,0)!=0;
int isErr = 0;
u32 fThFlags = TH_INIT_DEFAULT/* | TH_INIT_NO_ESC*/
| (find_option("th-novar",0,0)!=0 ? TH_R2B_NO_VARS : 0);
Th_InitTraceLog()/*processes -th-trace flag*/;
verify_all_options();
if(g.argc>4){
usage("?INFILE? ?OUTFILE?");
}
|
|
|
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
Blob bOut = empty_blob;
const char * zInfile = "-";
const char * zOutfile = "-";
const int fWithDiv = find_option("div",0,0)!=0;
const int fTh1 = find_option("th",0,0)!=0;
const int fNosvg = find_option("th-nosvg",0,0)!=0;
int isErr = 0;
u32 fThFlags = TH_INIT_DEFAULT | TH_INIT_NO_ESC
| (find_option("th-novar",0,0)!=0 ? TH_R2B_NO_VARS : 0);
Th_InitTraceLog()/*processes -th-trace flag*/;
verify_all_options();
if(g.argc>4){
usage("?INFILE? ?OUTFILE?");
}
|