GLib.strreverse (original) (raw)
Function
GLibstrreverse
Declaration [src]
gchar*
g_strreverse (
gchar* string
)
Description [src]
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, useg_utf8_strreverse().
Parameters
string
Type: gchar*
The string to reverse.
The data is owned by the caller of the function. |
---|
The value is a NUL terminated UTF-8 string. |
Return value
Type: gchar*
The string
, reversed in place.
The caller of the function takes ownership of the data, and is responsible for freeing it. |
---|
The value is a NUL terminated UTF-8 string. |