1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

add some comments

This commit is contained in:
Steffen Vogel 2018-10-04 02:41:01 +02:00
parent e120535fa8
commit 68df32a0e1
4 changed files with 5 additions and 0 deletions

View file

@ -51,6 +51,7 @@ int main(int argc, char *argv[])
const char *output_format = "villas.human";
char c, *endptr;
/* Parse optional command line arguments */
while ((c = getopt(argc, argv, "Vhd:i:o:")) != -1) {
switch (c) {
case 'V':

View file

@ -122,6 +122,7 @@ int main(int argc, char *argv[])
json_t *cfg_cli = json_object();
char c, *endptr;
/* Parse optional command line arguments */
while ((c = getopt(argc, argv, "Vhv:d:f:o:")) != -1) {
switch (c) {
case 'V':

View file

@ -117,6 +117,8 @@ int main(int argc, char *argv[])
const char *uri = "opal-shmem.conf";
#else
/* Parse optional command line arguments */
int c;
while ((c = getopt(argc, argv, "hV")) != -1) {
switch (c) {

View file

@ -255,6 +255,7 @@ int main(int argc, char *argv[])
json_t *cfg_cli = json_object();
/* Parse optional command line arguments */
int c;
char *endptr;
while ((c = getopt(argc, argv, "Vhxrsd:l:L:t:f:o:")) != -1) {