mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
feat(stdlib): add vim.base64 module (#25843)
Add base64 encode() and decode() functions to a vim.base64 module.
This commit is contained in:
12
src/nvim/lua/base64.h
Normal file
12
src/nvim/lua/base64.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef NVIM_LUA_BASE64_H
|
||||
#define NVIM_LUA_BASE64_H
|
||||
|
||||
#include <lauxlib.h>
|
||||
#include <lua.h>
|
||||
#include <lualib.h>
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "lua/base64.h.generated.h"
|
||||
#endif
|
||||
|
||||
#endif // NVIM_LUA_BASE64_H
|
Reference in New Issue
Block a user