Initial community commit

This commit is contained in:
Jef
2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit 20d28e80a5
16810 changed files with 4640254 additions and 2 deletions

19
Src/tagz/functions.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef NULLSOFT_FUNCTIONSH
#define NULLSOFT_FUNCTIONSH
#include "string.h"
#include "varlist.h"
typedef void (*TEXTFUNC)(size_t n_src, wchar_t **src, size_t *, tagz_::string *out, VarList *vars);
struct TextFunction
{
TEXTFUNC func;
const wchar_t *name;
};
extern TextFunction FUNCS[];
#define TABSIZE(x) (sizeof(x)/sizeof(*x))
#endif