action graph: Initial code.
[collection4.git] / action_graph.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <errno.h>
5
6 #include <fcgiapp.h>
7 #include <fcgi_stdio.h>
8
9 #include "action_graph.h"
10 #include "graph_list.h"
11 #include "utils_params.h"
12
13 int action_graph (void)
14 {
15   printf ("Content-Type: text/plain\n\n"
16       "Hello, this is %s\n", __func__);
17
18   return (0);
19 } /* }}} int action_graph */
20
21 /* vim: set sw=2 sts=2 et fdm=marker : */