9 lines
196 B
C
9 lines
196 B
C
#ifndef CLI_INTERNAL_PARSE_UTILS
|
|
#define CLI_INTERNAL_PARSE_UTILS
|
|
|
|
#include <stdint.h>
|
|
|
|
int cli_parse_uint64(const char *s, uint64_t *out);
|
|
int cli_parse_float(const char *s, float *out);
|
|
|
|
#endif
|