created header file

This commit is contained in:
Jakub Łuczyński 2020-02-07 19:13:23 +01:00
parent 9b140fafe3
commit dc5debadc2
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,10 @@
// This is an open source non-commercial project. Dear PVS-Studio, please check
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
// User defined function support
#include "nvim/eval/user_funcs.h"
// flags used in uf_flags
#define FC_ABORT 0x01 // abort function on error
#define FC_RANGE 0x02 // function accepts range

View File

@ -0,0 +1,9 @@
#ifndef NVIM_EVAL_USER_FUNCS_H
#define NVIM_EVAL_USER_FUNCS_H
#include "nvim/eval/typeval.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "eval/user_funcs.h.generated.h"
#endif
#endif // NVIM_EVAL_USER_FUNCS_H