mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 18:17:09 +00:00
26 lines
878 B
C
26 lines
878 B
C
|
/*
|
||
|
* Copyright (c) 2014
|
||
|
* Canonical, Ltd. (All rights reserved)
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of version 2 of the GNU General Public
|
||
|
* License published by the Free Software Foundation.
|
||
|
*
|
||
|
* 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, contact Novell, Inc. or Canonical
|
||
|
* Ltd.
|
||
|
*/
|
||
|
|
||
|
#ifndef __AA_KERNEL_INTERFACE_H
|
||
|
#define __AA_KERNEL_INTERFACE_H
|
||
|
|
||
|
int aa_find_iface_dir(char **dir);
|
||
|
int aa_load_buffer(int option, char *buffer, int size);
|
||
|
|
||
|
#endif /* __AA_KERNEL_INTERFACE_H */
|