mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
15 lines
375 B
C
15 lines
375 B
C
#ifndef _LUAUTILS_H
|
|
#define _LUAUTILS_H
|
|
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
#include <lualib.h>
|
|
|
|
int eval_expr(lua_State *, char *);
|
|
int has_table(lua_State *, char *);
|
|
char *string_expr(lua_State *, char *, char *);
|
|
double double_expr(lua_State *, char *, double);
|
|
int int_expr(lua_State *, char *, int);
|
|
bool bool_expr(lua_State *, char *, bool);
|
|
|
|
#endif
|