[ CCode ( cname = "G_SEARCHPATH_SEPARATOR_S" ) ]
public const string SEARCHPATH_SEPARATOR_S
The search path separator as a string.
This is ":" on UNIX machines and ";" under Windows.
Example: Get the search path separator as string:
public static int main (string[] args) {
// Output: ``:``
print ("%s\n", Path.SEARCHPATH_SEPARATOR_S);
return 0;
}
valac --pkg glib-2.0 GLib.Path.SEARCHPATH_SEPARATOR_S.vala