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

/*
 * ecvt.c
 * Historical "e"-format floating point output conversion.
 * Non-ANSI.
 */

#include <math.h>

char *
ecvt(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('e', &d, width<=0 ? 0 : width-1, decp, buf);
	++*decp;
	return buf;		
}

/* end of ecvt.c */

unix.superglobalmegacorp.com

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