aboutsummaryrefslogtreecommitdiff
path: root/include/engine.h
blob: 7719528cb26e59ed1ccce023bf444cd79a2f0c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);

#endif