move docmentation to separate folder
[oweals/gnunet.git] / doc / documentation / tutorial-examples / 002.c
1 static char *string_option;
2 static int a_flag;
3
4 // ...
5   struct GNUNET_GETOPT_CommandLineOption options[] = {
6     GNUNET_GETOPT_option_string ('s', "name", "SOMESTRING",
7      gettext_noop ("text describing the string_option NAME"),
8      &string_option},
9     GNUNET_GETOPT_option_flag ('f', "flag",
10      gettext_noop ("text describing the flag option"), 
11      &a_flag),
12     GNUNET_GETOPT_OPTION_END
13   };
14   string_option = NULL;
15   a_flag = GNUNET_SYSERR;
16 // ...
17