stock StringInverse(const string[], dest[]){new len = strlen(string);for(new i=0; i < len; i++) dest[i] = string[len-i];return dest;}