In file miscfx.h:

inline char* faststgxlate

(char* s, char* table)

Performs faster character-for-character string translation.

Documentation

Performs faster character-for-character string translation.

Parameters:
s - A string to translate.
table - A translation table. This is a char array with 256 elements. Translation of character x is done by the expression table[x]. Unlike stgxlate(), all characters will be translated.
Returns:
A pointer to s with the characters translated as above. It should be obvious that this is a destructive function! The translated string overwrites the original one.
See Also:
stgxlate()

Alphabetic index



This page was generated with the help of DOC++.