summaryrefslogtreecommitdiff
path: root/src/ivybind.h
blob: 40f69320aa6325bf78d595c07aa535ee79f5bddc (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
/*
 *	Ivy, C interface
 *
 *	Copyright (C) 1997-2000
 *	Centre d'Études de la Navigation Aérienne
 *
 *	Bind syntax for extracting message comtent 
 *  using regexp or other 
 *
 *	Authors: François-Régis Colin <fcolin@cena.fr>
 *
 *	$Id$
 * 
 *	Please refer to file version.h for the
 *	copyright notice regarding this software
 */
/* Module de gestion de la syntaxe des messages Ivy */

typedef struct _binding *IvyBinding;

void IvyBindingSetFilter( int argc, const char ** argv );
int IvyBindingFilter( const char *expression );

IvyBinding IvyBindingCompile( const char *expression );
void IvyBindingGetCompileError( int *erroffset, const char **errmessage );
void IvyBindingFree( IvyBinding bind );

int IvyBindingExec( IvyBinding bind, const char * message );
void IvyBindingMatch( IvyBinding bind, const char *message, int argnum, int *arglen, const char **arg );