Unicode C
Unicode C
Example: Http.GetDomain method
Demonstrates theGetDomain method.
Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
void ChilkatSample(void)
{
HCkHttpW http;
const wchar_t *domain;
http = CkHttpW_Create();
domain = CkHttpW_getDomain(http,L"https://chilkatsoft.com/refdoc/csharp.asp");
wprintf(L"%s\n",domain);
// Output: chilkatsoft.com
CkHttpW_Dispose(http);
}