summaryrefslogtreecommitdiff
blob: 89f6e553275a583442222ba85ea4b9b59087399b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _JH_CLI_PARAMETERS_H_
#define _JH_CLI_PARAMETERS_H_

#include <stdlib.h>

#include "parameters_types.h"

int JH_parameters_initialize
(
   struct JH_parameters param [const restrict static 1],
   int const argc,
   const char * argv [const static argc]
);

const char * JH_parameters_get_socket_name
(
   const struct JH_parameters param [const restrict static 1]
);

const char * JH_parameters_get_dest_socket_name
(
   const struct JH_parameters param [const restrict static 1]
);

#endif