11 lines
281 B
C
11 lines
281 B
C
#ifndef PING_CLI_PARSE_UTILS_H
|
|
#define PING_CLI_PARSE_UTILS_H
|
|
|
|
#include <netinet/in.h>
|
|
#include "ping/ping.h"
|
|
|
|
int cli_parse_inet_addr(const char *s, struct destinations *out);
|
|
int cli_parse_destinations(int argc, char **argv, int first_arg,
|
|
struct ping_config *config);
|
|
|
|
#endif
|