diff options
author | Schanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de> | 2017-12-04 17:39:55 +0100 |
---|---|---|
committer | Schanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de> | 2017-12-04 17:39:55 +0100 |
commit | d4b252fd73bdda7be51a971ba06a650a1dceb45c (patch) | |
tree | 15026001f43b756e4a86d7ec80f62fc0d9756dea /doc/tutorial-examples/001.c | |
parent | 514dd6f53cb735d0e48f35ddf92eae469c0abc8a (diff) | |
parent | 24a0b84d503375bf66b5df932cd18631cc88cf8d (diff) |
Merge branch 'identity_abe' into identity_oidc
Diffstat (limited to 'doc/tutorial-examples/001.c')
-rw-r--r-- | doc/tutorial-examples/001.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/tutorial-examples/001.c b/doc/tutorial-examples/001.c deleted file mode 100644 index 7f6699dd22..0000000000 --- a/doc/tutorial-examples/001.c +++ /dev/null @@ -1,29 +0,0 @@ -#include <gnunet/platform.h> -#include <gnunet/gnunet_util_lib.h> - -static int ret; - -static void -run (void *cls, - char *const *args, - const char *cfgfile, - const struct GNUNET_CONFIGURATION_Handle *cfg) -{ - // main code here - ret = 0; -} - -int -main (int argc, char *const *argv) -{ - struct GNUNET_GETOPT_CommandLineOption options[] = { - GNUNET_GETOPT_OPTION_END - }; - return (GNUNET_OK == - GNUNET_PROGRAM_run (argc, - argv, - "binary-name", - gettext_noop ("binary description text"), - options, &run, NULL)) ? ret : 1; -} - |