//This takes an input file of doubles and makes a sorted output file. Cd(__DIR__);; I64 Compare(F64 e1,F64 e2) { return Sign(e1-e2); } U0 F64FileSortTXT(U8 *in_name,U8 *out_name) { CCmpCtrl *cc; I64 i,n; F64 *a; CDoc *doc; //Pass1: Count the number of F64s. n=0; cc=CmpCtrlNew(MStrPrint("#include \"%s\"",in_name)); while (Lex(cc)) if (cc->token==TK_F64) n++; CmpCtrlDel(cc); a=MAlloc(n*sizeof(F64)); //Pass2: Read F64s. i=0; cc=CmpCtrlNew(MStrPrint("#include \"%s\"",in_name)); while (Lex(cc)) if (cc->token==TK_F64) a[i++]=cc->cur_f64; CmpCtrlDel(cc); QSortI64(a,n,&Compare); //Sort 64-bit sized values //Save doc=DocNew(out_name); DocPrint(doc,"//This is sorted.\n"); for (i=0;i