balde
master
A microframework for C based on GLib.
hello.c
A hello world!
/*
* balde: A microframework for C based on GLib.
* Copyright (C) 2013-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the LGPL-2 License.
* See the file COPYING.
*/
#include <
balde.h
>
balde_response_t
*
hello(
balde_app_t
*app,
balde_request_t
*request)
{
return
balde_make_response
(
"Hello World! I'm the balde! :D"
);
}
int
main(
int
argc,
char
**argv)
{
balde_app_t
*app =
balde_app_init
();
balde_app_add_url_rule
(app,
"hello"
,
"/"
, BALDE_HTTP_GET, hello);
balde_app_run
(app, argc, argv);
balde_app_free
(app);
return
0;
}
balde_app_add_url_rule
void balde_app_add_url_rule(balde_app_t *app, const gchar *endpoint, const gchar *rule, const balde_http_method_t method, balde_view_func_t view_func)
Adds a view to the balde application.
balde.h
balde public API.
balde_request_t
balde HTTP request context
Definition:
balde.h:212
balde_response_t
balde HTTP response context
Definition:
balde.h:268
balde_app_free
void balde_app_free(balde_app_t *app)
Free application context memory.
balde_app_run
void balde_app_run(balde_app_t *app, gint argc, gchar **argv)
Application main loop.
balde_app_init
balde_app_t * balde_app_init(void)
Initializes the application context.
balde_make_response
balde_response_t * balde_make_response(const gchar *content)
Initialize a response context.
balde_app_t
balde application context
Definition:
balde.h:122
Generated on Sat Aug 13 2022 21:41:33 for balde by
1.8.17