Defined in : #include <macros.h>

Definition : (string) MONEY_WCOL_TEXT( int *, int )

Description: Describes an array of coins in columns using the short currency
             code (highest denomination first). The width of the columns can
	     be set. For default widht of 2 characters, use MONEY_COL_TEXT.

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

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

