00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <jsoc_main.h>
00024 #include <stdio.h>
00025
00026 char *module_name = "hello_world";
00027 char *version_id = "1.5";
00028
00029 ModuleArgs_t module_args[] = {
00030 {ARG_STRING, "msg", "Hello, world!", "message to be echoed"},
00031 {}
00032 };
00033
00034 int DoIt () {
00035 int status;
00036
00037 if (cmdparams_exists (&cmdparams, "V"))
00038 printf ("output of module %s version %s:\n\n", module_name, version_id);
00039 printf ("%s\n", cmdparams_get_str (&cmdparams, "msg", &status));
00040 return (0);
00041 }
00042
00043
00044
00045
00046
00047
00048