xref: /dpdk/examples/vm_power_manager/guest_cli/parse.h (revision 59287933a0bb7101cdf9df8ba5dba0ae944e1ee3)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4 
5 #ifndef PARSE_H_
6 #define PARSE_H_
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 int
13 parse_set(const char *, uint16_t [], unsigned int);
14 
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif /* PARSE_H_ */
20