GetAPIHost

Get the currently configured API host.

char* GetAPIHost()

Parameters

  • none

Return Value

The currently configured API host.

Example

// example

char* h = GetAPIHost();
if (h)  {
    puts(h);
    FreeBuf(h);
}

Last updated

Was this helpful?