rtengine/include/voyage.h
2023-10-11 22:23:26 +02:00

18 lines
289 B
C

#ifndef VY_VOYAGE_H
#define VY_VOYAGE_H
/* basic types and macros */
#include <stddef.h>
#define VY_UNUSED(x) ((void)sizeof((x)))
typedef struct {
const char *start;
unsigned int length;
} vy_text_span;
void vyReportError(const char *subsystem, const char *fmt, ...);
#endif