ARPDAS_QNX6 1.0
dtoe.h
Go to the documentation of this file.
00001 /* dtoe.h defines how to output floats in E format */
00002 
00003 #ifdef __cplusplus
00004 extern "C" {
00005 #endif
00006 
00007 char *dtoe( double v, int width, char *obuf );
00008 #define edisplay(d,r,c,w,v) {\
00009   static double sv_ = -1;\
00010   if (sv_ != v) { sv_ = v; cdisplay(d,r,c,dtoe(v,w,0)); }\
00011 }
00012 
00013 #ifdef __cplusplus
00014 };
00015 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines