EFUN: to_array

SYNTAX:
int *to_array( str );
  string str;

DESCRIPTION:
To_array converts a string into an int array, containing the numeric
values of each of its characters, as defined in the standard ASCII table.

RETURN VALUE:
The efun returns the int array.

SEE ALSO:
to_float
to_int
to_string

EXAMPLE:
string *str;

str = to_array( "Holy Mission" );
// str is now ({ 72, 111, 108, 121, 32, 77, 105, 115, 115, 105, 111, 110, 0 })
