mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
cee2b3a5f1
* testdso.c xmlregexp.c: warning patches from Peter Breitenlohner * include/libxml/valid.h valid.c parser.c: serious DTD parsing speedups, start to deprecate 3 ElementDef related entry point and replace them with better ones. Daniel
13 lines
166 B
C
13 lines
166 B
C
#include <stdio.h>
|
|
|
|
#define IN_LIBXML
|
|
#include "libxml/xmlexports.h"
|
|
|
|
XMLPUBFUN int hello_world(void);
|
|
|
|
int hello_world(void)
|
|
{
|
|
printf("Success!\n");
|
|
return 0;
|
|
}
|