]> mj.ucw.cz Git - leo.git/blob - expr.h
TODO
[leo.git] / expr.h
1 /*
2  *      Hic Est Leo -- Expression Evaluation via Lua
3  *
4  *      (c) 2015 Martin Mares <mj@ucw.cz>
5  */
6
7 #ifndef _LEO_EXPR_H
8 #define _LEO_EXPR_H
9
10 #include <lua.h>
11
12 int luaopen_leo(lua_State *L);
13
14 void expr_init(void);
15 void expr_compile(void *key, char *source);
16 void expr_execute(void *key, struct style_results *r, layer_t layer);
17
18 #endif