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