unirev
Reverses the order of all characters in a string, except for the null terminating character
#include <unicode.h>
N_EXTERN_LIBRARY(punicode) unirev (
punicode s);
uses netwin32
Function unirev
(s : punicode
) : punicode;
Returns a pointer to the reversed string.
After calling unirev, the original contents of the string pointed to by the s parameter are replaced by the reversed string. The terminating NULL character is not reversed. For example, unirev changes "string" to "gnirts."
unirev corresponds to the C strrev function.
For sample code, see Section 3.25, Example: unirev.