13 lines
388 B
C
13 lines
388 B
C
#ifndef CLI_INTERNAL_PARSE_UTILS
|
|
#define CLI_INTERNAL_PARSE_UTILS
|
|
|
|
#include <stdint.h>
|
|
#include <netinet/in.h>
|
|
#include "ft_ping.h"
|
|
|
|
int cli_parse_uint64(const char *s, uint64_t *out);
|
|
int cli_parse_float(const char *s, float *out);
|
|
int cli_parse_inet_addr(const char *s, struct in_addr *out);
|
|
int cli_parse_destinations(int argc, char **argv, int optind, t_ping_config *config);
|
|
|
|
#endif
|