mirror of
https://github.com/Team-Resurgent/XboxCurl.git
synced 2026-08-15 20:18:19 -07:00
8 lines
112 B
C++
8 lines
112 B
C++
#pragma once
|
|
|
|
class url_utility
|
|
{
|
|
public:
|
|
static bool parse_url(const char* url, char** host, char** path);
|
|
};
|