12 lines
152 B
C
12 lines
152 B
C
|
#include <glib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
g_quark_from_static_string ("AAA");
|
||
|
printf ("%d\n", g_quark_to_string (2));
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|