Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenfcvt.c
Go to the documentation of this file.
00001 /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */ 00002 #include <precomp.h> 00003 00004 char *fcvtbuf (double, int, int *, int *, char *); 00005 00006 /* 00007 * @implemented 00008 */ 00009 char * 00010 _fcvt (double value, int ndigits, int *decpt, int *sign) 00011 { 00012 static char fcvt_buf[2 * DBL_MAX_10_EXP + 10]; 00013 return fcvtbuf (value, ndigits, decpt, sign, fcvt_buf); 00014 } Generated on Sat May 26 2012 04:35:35 for ReactOS by
1.7.6.1
|