blob: 5cc2274559c6288feb7ec6e439c6882c9adc0911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file regex.h
* @brief Declaration of miscellaneous regexp functions.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#ifndef regex_h_included
#define regex_h_included
#include <string>
namespace Binc {
int regexMatch(const std::string &data_in, const std::string &p_in);
}
#endif
|