* Defined in /sys/money.h

Macro:		MONEY_PARSE(str)

Description:	parses a string and returns an array of integers of the	form
		({ cc, sc, gc, pc }).  Each element indicates how many coins
		of that type were specified by the parsed string.  A -1 value
		for any coin type means that all coins of that type are to be
		used.  if 0 is returned, the string could not be parsed. 

		For example, MONEY_PARSE("all silver coins and 3 gold coins")
		would return ({ 0, -1, 3, 0 }) (no copper coins, all silver
		coins, 3 gold coins, and no platinum coins).

Arguments: 	(string) str - The string to be parsed

See Also:	MONEY_PARSE_OB
