blob: f0373c0f3428de736c0b118d11aaff29e410cbe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* pin.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* Date: 28.01.2006, horchi
*/
//***************************************************************************
#ifndef __REP_H__
#define __REP_H__
//***************************************************************************
enum Option
{
repUseRegularExpression = 1,
repIgnoreCase = 2
};
int rep(const char* string, const char* expression, Option options = repUseRegularExpression);
int rep(const char* string, const char* expression,
const char*& s_location, Option options = repUseRegularExpression);
int rep(const char* string, const char* expression, const char*& s_location,
const char*& e_location, Option options = repUseRegularExpression);
//***************************************************************************
#endif
|