From: Thadeu Lima de Souza Cascardo Date: Sun, 27 Jan 2008 04:29:20 +0000 (-0200) Subject: Test CGI frontend with main funcion. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fatompub.git;a=commitdiff_plain;h=752ea52c468480eab4519f5a0227a9e3904a7813 Test CGI frontend with main funcion. --- diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..0c8620f --- /dev/null +++ b/src/main.c @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2007 Thadeu Lima de Souza Cascardo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + + +#include + +#include + +extern void cgi_serve_request (AtomCtx *ctx); + +int +main (int argc, char **argv) +{ + AtomCtx *ctx; + IRI *iri; + Atom *atom; + GError *error; + ctx = atom_ctx_new (); + atom_config_init (ctx); + if ((error = atom_error_get (ctx)) != NULL) + { + g_message ("%s\n", error->message); + exit (1); + } + cgi_serve_request (ctx); + return 0; +}