FORMAT


Description:

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

Example: printf, int16:

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

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