summaryrefslogtreecommitdiff
path: root/examples/vm_power_manager/parse.h
blob: 892dee449fbc096f646823a27b5705811237d404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2018 Intel Corporation
 */

#ifndef PARSE_H_
#define PARSE_H_

#ifdef __cplusplus
extern "C" {
#endif

int
parse_set(const char *, uint16_t [], unsigned int);

int
parse_branch_ratio(const char *input, float *branch_ratio);

#ifdef __cplusplus
}
#endif


#endif /* PARSE_H_ */