Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/security/ipe/policy_parser.h
26378 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
4
*/
5
#ifndef _IPE_POLICY_PARSER_H
6
#define _IPE_POLICY_PARSER_H
7
8
int ipe_parse_policy(struct ipe_policy *p);
9
void ipe_free_parsed_policy(struct ipe_parsed_policy *p);
10
11
#endif /* _IPE_POLICY_PARSER_H */
12
13