[ Version ( since = "2.6" ) ]
[ CCode ( cname = "G_GSSIZE_FORMAT" ) ]
public const string FORMAT
This is the platform dependent conversion specifier for scanning and printing values of type ssize_t.
See also g_gint16_format.
Example: printf, ssize_t:
public static int main (string[] args) {
// Output: ``10``
ssize_t val = 10;
print ("%" + ssize_t.FORMAT + "\n", val);
return 0;
}
valac --pkg glib-2.0 ssize_t.FORMAT.vala