summaryrefslogtreecommitdiff
path: root/apps/showcmap.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-01-11 18:47:38 +0100
committerTor Andersson <tor@ghostscript.com>2005-01-11 18:47:38 +0100
commitf2105f20cbd9ca7e8ebed81e165b296230d997f1 (patch)
tree55d4308ada414abdb86ebcfa46ed77dab259db62 /apps/showcmap.c
parent4a6def1aebcb61599f9d975e92079aad5bb423c6 (diff)
downloadmupdf-f2105f20cbd9ca7e8ebed81e165b296230d997f1.tar.xz
fix jamfile & co for win32
Diffstat (limited to 'apps/showcmap.c')
-rw-r--r--apps/showcmap.c22
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;
-}
-