f-stack/dpdk/examples/vm_power_manager/parse.h

24 lines
334 B
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* 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);
2021-02-05 08:48:47 +00:00
int
parse_branch_ratio(const char *input, float *branch_ratio);
2019-06-25 11:12:58 +00:00
#ifdef __cplusplus
}
#endif
#endif /* PARSE_H_ */