Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
also start prefering NtDll API. so far:
 * NtQueryInformationFile
 * NtClose

adds a performance workaround for windows unicode conversion. but that
should probably be removed before merging
2019-07-15 17:54:50 -04:00

26 lines
454 B
C
Vendored

#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char *fcvt(double x, int n, int *dp, int *sign)
{
char tmp[1500];
int i, lz;
if (n > 1400U) n = 1400;
sprintf(tmp, "%.*f", n, x);
i = (tmp[0] == '-');
if (tmp[i] == '0') lz = strspn(tmp+i+2, "0");
else lz = -(int)strcspn(tmp+i, ".");
if (n<=lz) {
*sign = i;
*dp = 1;
if (n>14U) n = 14;
return "000000000000000"+14-n;
}
return ecvt(x, n-lz, dp, sign);
}