Files
2026-08-13 16:50:52 +08:00

13 lines
178 B
C
Executable File

#include <stdio.h>
#define IN_LIBXML
#include "libxml/xmlexports.h"
XMLPUBFUN int hello_world(void);
int hello_world(void)
{
printf("Success!\n");
return 0;
}