18 lines
251 B
C
18 lines
251 B
C
|
|
#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 */
|