blob: 885a2b2671a4ec8ac47a4a98a6ada572f2541f84 (
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>
void 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
|