00001
00023 #ifndef _LIBGNURDF_INTERNAL_H_
00024 #define _LIBGNURDF_INTERNAL_H_
00025
00026 #ifdef HAVE_CONFIG_H
00027 # include "config.h"
00028 #endif
00029
00030 #ifdef STDC_HEADERS
00031 # include <stdlib.h>
00032 # include <string.h>
00033 #endif
00034
00035 #ifdef WITH_DMALLOC
00036 # include <dmalloc.h>
00037 #endif
00038
00039 #ifdef WITH_LEAKBUG
00040 # include <leakbug.h>
00041 #endif
00042
00043 #include <stdio.h>
00044 #include <errno.h>
00045
00046
00047 #ifndef xmlChildrenNode
00048 # define xmlChildrenNode childs
00049 # define xmlRootNode root
00050 #endif
00051
00052 void rdfInitializeParser(void);
00053 void rdfUninitializeParser(void);
00054
00055 #endif
00056
00057