mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
10 lines
222 B
C++
10 lines
222 B
C++
#ifndef URL_BLOCK_CHECK_H_
|
|
#define URL_BLOCK_CHECK_H_
|
|
|
|
class Url;
|
|
|
|
bool isUrlBlocked(const Url &url, int *p_errno = nullptr);
|
|
bool isUrlUnwanted(const Url &url, const char **reason = nullptr);
|
|
|
|
#endif //URL_BLOCK_CHECK_H_
|