forked from marcocarnut/rxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrxe_alt.h
23 lines (20 loc) · 828 Bytes
/
rxe_alt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* librxe - a library for enumerating sets described by regexes, version 0.9
* (C) 2011 Marco "Kiko" Carnut <kiko at postcogito dot org>
*
* 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
* http://www.gnu.org/licenses/gpl-2.0.html for details.
*
*/
#ifndef __RXE_ALT_H__
#define __RXE_ALT_H__
struct rxe_alt *rxe_new_alt(struct rxe *rxe);
void rxe_free_alt(struct rxe_alt *alt);
#endif // __RXE_ALT_H__