mirror of https://github.com/F-Stack/f-stack.git
20 lines
268 B
C
20 lines
268 B
C
|
/* 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);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* PARSE_H_ */
|