blob: 1471e9000cfcc207b9f4db34ef660d961ba36b95 (
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
|