Reverses all of the bytes in a string. For example, g_strreverse ("abcdef") will result in "fedcba".
Note that g_strreverse() doesn't work on UTF-8 strings containing multibyte characters. For that purpose, use g_utf8_strreverse().
the string to reverse
the same pointer passed in as @string
See Implementation
Reverses all of the bytes in a string. For example, g_strreverse ("abcdef") will result in "fedcba".
Note that g_strreverse() doesn't work on UTF-8 strings containing multibyte characters. For that purpose, use g_utf8_strreverse().