Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > by-pkgid > c417ce690ddadffde6a1afd75d956ff5 > files > 85

ebview-debug-0.3.6.2-2mdv2011.0.i586.rpm

/*  Copyright (C) 2001-2004  Kenichi Suto
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#ifndef __REG_H__
#define __REG_H__

#include "defs.h"
#include <sys/types.h>
#include <regex.h>

//static regex_t reg;

typedef regex_t REG_TABLE;

REG_TABLE *regex_prepare(guchar *pat, gboolean ignore_case);
void regex_free(REG_TABLE *reg);
guchar *regex_search(REG_TABLE *reg, guchar *text);

#endif /* __REG_H__ */