diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-08-12 11:06:16 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-08-12 11:06:16 +0000 |
commit | 73447a07f1f4c93539418cc14fbfbbe6ede62728 (patch) | |
tree | ed4f5efb169a8e20e9947af3b09aee9b886452d4 /Build/source/texk/dvipdfm-x/mpost.c | |
parent | aecb768e7189355e7b96d2796a6ec23133088840 (diff) |
texk/dvipdfm-x: Moved check_for_mp() and declared as static
git-svn-id: svn://tug.org/texlive/trunk@38104 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/mpost.c')
-rw-r--r-- | Build/source/texk/dvipdfm-x/mpost.c | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/Build/source/texk/dvipdfm-x/mpost.c b/Build/source/texk/dvipdfm-x/mpost.c index 36476929021..047d4767650 100644 --- a/Build/source/texk/dvipdfm-x/mpost.c +++ b/Build/source/texk/dvipdfm-x/mpost.c @@ -1,6 +1,6 @@ /* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks. - Copyright (C) 2007-2014 by Jin-Hwan Cho and Shunsaku Hirata, + Copyright (C) 2007-2015 by Jin-Hwan Cho and Shunsaku Hirata, the dvipdfmx project team. Copyright (C) 1998, 1999 by Mark A. Wicks <mwicks@kettering.edu> @@ -1658,26 +1658,3 @@ mps_do_page (FILE *image_file) */ return (error ? -1 : 0); } - -int -check_for_mp (FILE *image_file) -{ - int try_count = 10; - - rewind (image_file); - mfgets(work_buffer, WORK_BUFFER_SIZE, image_file); - if (strncmp(work_buffer, "%!PS", 4)) - return 0; - - while (try_count > 0) { - mfgets(work_buffer, WORK_BUFFER_SIZE, image_file); - if (!strncmp(work_buffer, "%%Creator:", 10)) { - if (strlen(work_buffer+10) >= 8 && - strstr(work_buffer+10, "MetaPost")) - break; - } - try_count--; - } - - return ((try_count > 0) ? 1 : 0); -} |