Defined in : #include <macros.h>

Definition : (string) MONEY_COL_TEXT( int * )

Description: Describes an array of coins in columns using the short currency
             code (highest denomination first). It uses 2 spaces per value.
	     For wider columns, use MONEY_WCOL_TEXT.

Arguments  : int * - the money array (smallest denomination first)

Example    : MONEY_COL_TEXT( ({ 4, 3, 2, 1 }) )  ->  " 1 pc  2 gc  3 sc  4 cc"
             MONEY_COL_TEXT( ({ 1, 0, 0, 4 }) )  ->  " 4 pc              1 cc"

