11 lines
281 B
C
11 lines
281 B
C
#ifndef CLI_PARSE_UTILS_H
|
|
#define CLI_PARSE_UTILS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int cli_parse_uint64(const char *s, uint64_t *out);
|
|
int cli_parse_int64(const char *s, int64_t *out);
|
|
int cli_parse_float(const char *s, float *out);
|
|
int cli_parse_ufloat(const char *s, float *out);
|
|
|
|
#endif
|