MCPcopy Create free account
hub / github.com/apache/arrow / gaflight_location_get_scheme

Function gaflight_location_get_scheme

c_glib/arrow-flight-glib/common.cpp:294–300  ·  view source on GitHub ↗

* gaflight_location_get_scheme: * @location: A #GAFlightLocation. * * Returns: The scheme of this URI. * * It should be freed with g_free() when no longer needed. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

292 * Since: 5.0.0
293 */
294gchar *
295gaflight_location_get_scheme(GAFlightLocation *location)
296{
297 const auto flight_location = gaflight_location_get_raw(location);
298 const auto scheme = flight_location->scheme();
299 return g_strdup(scheme.c_str());
300}
301
302/**
303 * gaflight_location_equal:

Callers

nothing calls this directly

Calls 2

schemeMethod · 0.45

Tested by

no test coverage detected