22 #define TYDYAPPEND(str1,str2) str1##str2 23 #define TY_(str) TYDYAPPEND(prvTidy,str) 36 typedef struct _Dict Dict;
45 typedef struct _Node Node;
51 typedef struct _Lexer Lexer;
53 extern TidyAllocator
TY_(g_default_allocator);
56 #define TidyAlloc(allocator, size) ((allocator)->vtbl->alloc((allocator), (size))) 57 #define TidyRealloc(allocator, block, size) ((allocator)->vtbl->realloc((allocator), (block), (size))) 58 #define TidyFree(allocator, block) ((allocator)->vtbl->free((allocator), (block))) 59 #define TidyPanic(allocator, msg) ((allocator)->vtbl->panic((allocator), (msg))) 60 #define TidyClearMemory(block, size) memset((block), 0, (size)) Definition: tidy-int.h:35
Definition: streamio.h:63
Definition: streamio.h:113
Defines HTML Tidy API implemented by tidy library.
#define TY_(str)
Definition: forward.h:23