10 lines
146 B
C++
10 lines
146 B
C++
#ifndef GUARD_urls_h
|
|
#define GUARD_urls_h
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
std::vector<std::string> find_urls(const std::string& s);
|
|
|
|
#endif
|