diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-01-11 18:47:38 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-01-11 18:47:38 +0100 |
commit | f2105f20cbd9ca7e8ebed81e165b296230d997f1 (patch) | |
tree | 55d4308ada414abdb86ebcfa46ed77dab259db62 /apps/showcmap.c | |
parent | 4a6def1aebcb61599f9d975e92079aad5bb423c6 (diff) | |
download | mupdf-f2105f20cbd9ca7e8ebed81e165b296230d997f1.tar.xz |
fix jamfile & co for win32
Diffstat (limited to 'apps/showcmap.c')
-rw-r--r-- | apps/showcmap.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/showcmap.c b/apps/showcmap.c deleted file mode 100644 index 3e6e5e8e..00000000 --- a/apps/showcmap.c +++ /dev/null @@ -1,22 +0,0 @@ -#include <fitz.h> -#include <mupdf.h> - -int main(int argc, char **argv) -{ - fz_error *err; - fz_cmap *cmap; - fz_file *file; - - err = fz_openfile(&file, argv[1], FZ_READ); - if (err) - fz_abort(err); - - err = pdf_parsecmap(&cmap, file); - if (err) - fz_abort(err); - - fz_debugcmap(cmap); - - return 0; -} - |