summaryrefslogtreecommitdiffstats
path: root/core/xmp_parser.h
blob: 8bdcb6de429327af194f993b860373bb560c4432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Parse XMP blocks using libxml2

#ifndef XMP_PARSER_H
#define XMP_PARSER_H

#include "units.h" // for timestamp_t
#include <stddef.h> // for size_t

timestamp_t parse_xmp(const char *data, size_t size); // On failure returns 0.

#endif // XMP_PARSER_H