/* #define CONFIG_FILE "/etc/tidy_config.txt" */ /* original */
#define SUPPORT_ASIAN_ENCODINGS 0
#define SUPPORT_ACCESSIBILITY_CHECKS 0
#define USE_ORIGINAL_ACCESSIBILITY_CHECKS 1
#define PLATFORM_NAME "Plan9"
#undef SUPPORT_GETPWNAM
#define PRESERVE_FILE_TIMES 0
#define Plan9 1
#include <stdio.h>
#include <stdlib.h>
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned char uchar;
typedef enum
{
no,
yes
} Bool;
#define null 0
void *MemAlloc(uint size);
void *MemRealloc(void *mem, uint newsize);
void MemFree(void *mem);
void ClearMemory(void *, uint size);
|