Function Macro
GLibSTRINGIFY
since: 2.0
Description
Accepts a macro or a string and converts it into a string after preprocessor argument expansion. For example, the following code:
#define AGE 27
const gchar *greeting = G_STRINGIFY (AGE) " today!";
is transformed by the preprocessor into (code equivalent to):
const gchar *greeting = "27 today!";
Available since: 2.0
This function is not directly available to language bindings.