dgd/
dgd/mud/doc/kernel/
dgd/mud/doc/kernel/hook/
dgd/mud/doc/kernel/lfun/
dgd/mud/include/
dgd/mud/include/kernel/
dgd/mud/kernel/lib/
dgd/mud/kernel/lib/api/
dgd/mud/kernel/obj/
dgd/mud/kernel/sys/
dgd/src/host/beos/
dgd/src/host/pc/res/
dgd/src/host/unix/
dgd/src/lpc/
dgd/src/parser/
NAME
	frexp - split float into fraction and exponent

SYNOPSIS
	mixed *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
	kfun/ldexp, kfun/modf