blob: d65c77119f30e41a24b15d7bf378fb7fa8919d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __ENGINE_H
#define __ENGINE_H
#include <lexer.h>
#include <list.h>
list_t *ingest(char **buffer);
void handle_include(char **buffer, key_match_t *match, directive_t *directive);
void handle_contentfor(char **buffer,
key_match_t *match,
directive_t *directive,
list_t *content_headers);
#endif
|