omdb/image.h

18 lines
251 B
C
Raw Normal View History

2025-12-13 06:22:27 +00:00
#ifndef _IMAGE_H
#define _IMAGE_H
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
void process_image(const char *path);
void process_image_mem(const unsigned char *buffer, size_t len);
#ifdef __cplusplus
}
#endif
#endif /* _IMAGE_H */