NeoMutt  2025-09-05-70-gcfdde0
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
22
33
34#ifndef MUTT_LUA_LIB_H
35#define MUTT_LUA_LIB_H
36
37#include "config.h"
38
39#ifdef USE_LUA
40
41void lua_init (void);
42void lua_cleanup(void);
43
44#else
45
46static inline void lua_init (void) {}
47static inline void lua_cleanup(void) {}
48
49#endif
50
51#endif /* MUTT_LUA_LIB_H */
void lua_init(void)
Setup feature commands.
Definition commands.c:128
void lua_cleanup(void)
Clean up Lua.
Definition commands.c:136