/usr/include/tachyon/jpeg.h is in libtachyon-dev 0.99~b2+dfsg-0.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | /*
* jpeg.h - This file deals with JPEG format image files (reading/writing)
*
* $Id: jpeg.h,v 1.3 2011/01/13 04:04:38 johns Exp $
*/
int readjpeg(const char *name, int *xres, int *yres, unsigned char **imgdata);
int writejpeg(const char *name, int xres, int yres, unsigned char *imgdata);
|