Reverses the character order in a string.
#include <unilib.h>
unicode_t *unirev (
unicode_t *base);
(IN) Points to the string to be reversed.
Returns the address of the original string, base.
The unirev function replaces the base string with a string whose characters are in the reverse order.
The unirev corresponds to the strrev function.