/usr/include/minidjvu/image-io/pbm.h is in libminidjvu-dev 0.8.svn.2010.05.06+dfsg-5build1.
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 9 10 11 12 13 14 15 | /*
* pbm.h - loading and saving in PBM ("portable bitmap") format
*/
/*
* 1 - success, 0 - failure
*/
MDJVU_FUNCTION int mdjvu_save_pbm(mdjvu_bitmap_t, const char *path, mdjvu_error_t *);
MDJVU_FUNCTION int mdjvu_file_save_pbm(mdjvu_bitmap_t, mdjvu_file_t, mdjvu_error_t *);
/*
* These functions return NULL if failed
*/
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_load_pbm(const char *path, mdjvu_error_t *);
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_file_load_pbm(mdjvu_file_t, mdjvu_error_t *);
|