mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
28 lines
951 B
C
28 lines
951 B
C
![]() |
/*
|
||
|
* (C) 2006, 2007 Andreas Gruenbacher <agruen@suse.de>
|
||
|
* Copyright (c) 2003-2008 Novell, Inc. (All rights reserved)
|
||
|
* Copyright 2009-2010 Canonical Ltd.
|
||
|
*
|
||
|
* The libapparmor library is licensed under the terms of the GNU
|
||
|
* Lesser General Public License, version 2.1. Please see the file
|
||
|
* COPYING.LGPL.
|
||
|
*
|
||
|
* This library 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 Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*
|
||
|
* Parsing of regular expression into expression trees as implemented in
|
||
|
* expr-tree
|
||
|
*/
|
||
|
#ifndef __LIBAA_RE_PARSE_H
|
||
|
#define __LIBAA_RE_PARSE_H
|
||
|
|
||
|
int regex_parse(Node **tree, const char *rule);
|
||
|
|
||
|
#endif /* __LIBAA_RE_PARSE_H */
|