]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/ext/twig/php_twig.h
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / ext / twig / php_twig.h
1 /*
2 +----------------------------------------------------------------------+
3 | Twig Extension |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2011 Derick Rethans |
6 +----------------------------------------------------------------------+
7 | Redistribution and use in source and binary forms, with or without |
8 | modification, are permitted provided that the conditions mentioned |
9 | in the accompanying LICENSE file are met (BSD, revised). |
10 +----------------------------------------------------------------------+
11 | Author: Derick Rethans <derick@derickrethans.nl> |
12 +----------------------------------------------------------------------+
13 */
14
15 #ifndef PHP_TWIG_H
16 #define PHP_TWIG_H
17
18 #define PHP_TWIG_VERSION "1.13.2"
19
20 #include "php.h"
21
22 extern zend_module_entry twig_module_entry;
23 #define phpext_twig_ptr &twig_module_entry
24
25 #ifdef ZTS
26 #include "TSRM.h"
27 #endif
28
29 PHP_FUNCTION(twig_template_get_attributes);
30
31 #endif