blob: 66c5dc8626d0bdd11cf840a494d0dfd810960d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __ENGINE_H
#define __ENGINE_H
#include <lexer.h>
#include <list.h>
#define PARTIALS "partials"
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);
void handle_eachdo(char **buffer, key_match_t *match, directive_t *directive);
#endif
|