File:  [MW Coherent from dump] / coherent / b / lib / libc / stdio / fcvt.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * fcvt.c
 * Historical "f"-format floating point output conversion.
 * Non-ANSI.
 */

#include <math.h>

char *
fcvt(d, width, decp, signp) double d; int width; int *decp; int *signp;
{
	static char buf[L10P+1];

	if (d < 0) {
		*signp = 1;
		d = -d;
	} else
		*signp = 0;
	_dtoa('f', &d, width<=0 ? 0 : width, decp, buf);
	++*decp;
	return buf;		
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.