A template parsing library and tool written in C.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
278 B

#ifndef __HTMLPARS_H__
#define __HTMLPARS_H__
#include "expValue.h"
#define ERR_UNDEF_VAR 0
#define ERR_NO_INDEX 1
#define ERR_STRING_OPERATOR 2
#define ERR_FLOAT_OPERATOR 3
void exitError (int, ...);
void printExpr (s_expVal *);
#endif /* __HTMLPARS_H__ */