mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-15 04:06:18 +00:00
12 lines
313 B
C
12 lines
313 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
|
||
|
*/
|
||
|
#ifndef _IPE_POLICY_PARSER_H
|
||
|
#define _IPE_POLICY_PARSER_H
|
||
|
|
||
|
int ipe_parse_policy(struct ipe_policy *p);
|
||
|
void ipe_free_parsed_policy(struct ipe_parsed_policy *p);
|
||
|
|
||
|
#endif /* _IPE_POLICY_PARSER_H */
|