FORMAT


Description:

[ CCode ( cname = "G_GINT64_FORMAT" ) ]
public const string FORMAT

Example: printf, int64:

public static int main (string[] args) {
// Output: ``10``
int64 val = 10;
print ("%" + int64.FORMAT + "\n", val);
return 0;
}

valac --pkg glib-2.0 int64.FORMAT.vala