18 lines
263 B
C
18 lines
263 B
C
#ifndef TIFFREAD_H
|
|
#define TIFFREAD_H
|
|
|
|
#include "mem_arena.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
#include "image.h"
|
|
|
|
Image *read_baseline_tiff(const char *file, Arena *arena);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // !TIFFREAD_H
|