gambas-source-code/gb.xml/html/htmlserializer.h
2017-07-30 13:14:48 +02:00

10 lines
356 B
C

#ifndef SERIALIZER_H
#define SERIALIZER_H
#include "htmlmain.h"
void serializeHTMLNode(Node *node, char *&output, size_t &len, int indent = -1);//Converts the node to its string representation
void GBserializeHTMLNode(Node *node, char *&output, size_t &len, int indent = -1);//Same as above, but returns a Gambas String directly
#endif // SERIALIZER_H