#ifndef WEBDAV_XML_H
#define WEBDAV_XML_H
#include "../public/webdav.h"
#include <libxml/tree.h>
#include <cx/map.h>
#include "../util/writer.h"
#ifdef __cplusplus
extern "C" {
#endif
int wsxml_write_nodes(
pool_handle_t *pool,
Writer *out,
CxMap *nsdefs,
xmlNode *node);
int wsxml_write_nodes_without_nsdef(
pool_handle_t *pool,
Writer *out,
xmlNode *node);
#ifdef __cplusplus
}
#endif
#endif