/* print with 1p,e8.2 format onto stream FILE * all are located in printe82.c */ void PrintE82( FILE*, double ); /* print with 1p,e8.1 format onto stream FILE */ void PrintE71( FILE*, double ); /* print with 1p,e9.3 format onto stream FILE */ void PrintE93( FILE*, double ); /* create string with val and format, to print with %s, * much faster than above, totally native on non-MS systems */ char *PrintEfmt(const char *fmt, double val );