mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
11 lines
281 B
C
11 lines
281 B
C
![]() |
#include "lua.h"
|
||
|
#include "lauxlib.h"
|
||
|
#include "lualib.h"
|
||
|
|
||
|
#define EXPR_BUF_SIZE 256
|
||
|
|
||
|
char* lua_stringexpr(lua_State*, char*, char*);
|
||
|
double lua_doubleexpr(lua_State*, char*, double);
|
||
|
int lua_intexpr(lua_State*, char*, int);
|
||
|
bool lua_boolexpr(lua_State*, char*, bool);
|