7 lines
91 B
C++
7 lines
91 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace url {
|
|
bool is_url_valid(std::string &url);
|
|
}
|