/* Simple PPM library ------------------------------------------------------- */ #ifndef __PPM_H__ #define __PPM_H__ #include #ifdef __cplusplus extern "C" { #endif extern int ppm_write(const char *fname, unsigned char *buffer, size_t width, size_t height); #ifdef __cplusplus } #endif #endif /* vim: set sts=4 sw=4 ts=8 ft=cpp: ----------------------------------------- */