xref: /dpdk/examples/vm_power_manager/parse.h (revision 25d11a86c56d50947af33d0b79ede622809bd8b9)
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 
20 #endif /* PARSE_H_ */
21