Mercurial > urweb
comparison include/urweb.h @ 323:5030e909fbf3
Region memory allocation for query parameters
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 11 Sep 2008 12:40:40 -0400 |
parents | 9ad92047a499 |
children | b91480c9a729 |
comparison
equal
deleted
inserted
replaced
322:aa89b73d83e4 | 323:5030e909fbf3 |
---|---|
19 | 19 |
20 __attribute__((noreturn)) void uw_error(uw_context, failure_kind, const char *fmt, ...); | 20 __attribute__((noreturn)) void uw_error(uw_context, failure_kind, const char *fmt, ...); |
21 char *uw_error_message(uw_context); | 21 char *uw_error_message(uw_context); |
22 | 22 |
23 void *uw_malloc(uw_context, size_t); | 23 void *uw_malloc(uw_context, size_t); |
24 void uw_begin_region(uw_context); | |
25 void uw_end_region(uw_context); | |
26 | |
24 int uw_send(uw_context, int sock); | 27 int uw_send(uw_context, int sock); |
25 | 28 |
26 void uw_set_input(uw_context, char *name, char *value); | 29 void uw_set_input(uw_context, char *name, char *value); |
27 char *uw_get_input(uw_context, int name); | 30 char *uw_get_input(uw_context, int name); |
28 char *uw_get_optional_input(uw_context, int name); | 31 char *uw_get_optional_input(uw_context, int name); |