mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
12 lines
254 B
C
12 lines
254 B
C
|
// 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
|