1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef CORE_INVOICE_H #define CORE_INVOICE_H #include <stddef.h> #ifdef __cplusplus extern "C" { #endif /* 0 valid, 1 invalid, 2 unreadable. profile: en16931 | peppol | pint | pint-my */ int core_invoice_validate_ubl(const char *xml, const char *profile, char *err, size_t err_len); #ifdef __cplusplus } #endif #endif