mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +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 */
|