lpmoo-1.2/etc/
lpmoo-1.2/mudlib/
lpmoo-1.2/mudlib/etc/
lpmoo-1.2/mudlib/include/
lpmoo-1.2/mudlib/include/moo/
lpmoo-1.2/mudlib/lpc/
lpmoo-1.2/mudlib/std/auto/
lpmoo-1.2/mudlib/std/bfuns/
NAME
	frexp - split float into fraction and exponent

SYNOPSIS
	list frexp(float x)

DESCRIPTION
	The argument is split into a fraction f and an integer
	exponent n, such that either f == 0.0, or 0.5 <= | f | < 1.0,
	and f * 2 ** n == x. {f, n} is returned. If x == 0.0, both f
	and n will be zero.

SEE ALSO
	ldexp, modf