MudOSa4DGD/
MudOSa4DGD/bin/
MudOSa4DGD/data/
MudOSa4DGD/doc/
MudOSa4DGD/doc/driver/
MudOSa4DGD/doc/efun/bitstrings/
MudOSa4DGD/doc/efun/command/
MudOSa4DGD/doc/efun/communication/
MudOSa4DGD/doc/efun/heart_beat/
MudOSa4DGD/doc/efun/interactive/
MudOSa4DGD/doc/efun/inventory/
MudOSa4DGD/doc/efun/living/
MudOSa4DGD/doc/efun/mappings/
MudOSa4DGD/doc/efun/strings/
MudOSa4DGD/doc/efun/uid/
MudOSa4DGD/doc/funs/
MudOSa4DGD/doc/language/
MudOSa4DGD/mudlib/dgd/doc/
MudOSa4DGD/mudlib/dgd/lib/include/dgd/
MudOSa4DGD/mudlib/dgd/lib/std/
MudOSa4DGD/mudlib/dgd/lib/sys/
MudOSa4DGD/mudlib/dgd/log/
MudOSa4DGD/mudlib/log/
MudOSa4DGD/mudlib/std/include/
MudOSa4DGD/mudlib/std/obj/
If config.h defines MUDOS_TYPEFUNCS, the following macros will be
defined.

	intp(var)	returns 1 if var is of type int
	floatp(var)	returns 1 if var is of type float
	stringp(var)	returns 1 if var is of type string
	objectp(var)	returns 1 if var is of type object
	arrayp(var)	returns 1 if var is of type mixed*
	mapp(var)	returns 1 if var is of type mapping

With MUDOS_EXTRA_TYPEFUNCS being defined in config.h, some extra
namespace-baggage is also included (for backwards compatibility).

	pointerp(var)	returns 1 if var is of type mixed*
	mappingp(var)	returns 1 if var is of type mapping

Otherwise, these functions will return 0.

NOTICE
	For checking a variable for several types at once, the use
        of switch combined with typeof is STRONGLY recommended for
	optimized result.

SEE ALSO
	language/types, kfun/typeof