10 lines
151 B
C
10 lines
151 B
C
#include <stdlib.h>
|
|
|
|
#include "ping/cli.h"
|
|
|
|
void
|
|
cli_config_free(t_ping_config *config)
|
|
{
|
|
free(config->destinations);
|
|
config->destinations = NULL;
|
|
}
|