summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipos/utils.h
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/texk/dvipos/utils.h
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipos/utils.h')
-rw-r--r--Build/source/texk/dvipos/utils.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/Build/source/texk/dvipos/utils.h b/Build/source/texk/dvipos/utils.h
deleted file mode 100644
index 98f3b6fd6af..00000000000
--- a/Build/source/texk/dvipos/utils.h
+++ /dev/null
@@ -1,86 +0,0 @@
-/* dvipos-20070107
-
- Copyright (C) 2003 by Jin-Hwan <chofchof@ktug.or.kr>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-*/
-
-#ifndef _UTILS_H_
-#define _UTILS_H_
-
-#ifdef MIKTEX
-#include "miktex.h"
-#include "gnu-miktex.h"
-#include "web2c-miktex.h"
-#else
-#include <kpathsea/kpathsea.h>
-#endif
-
-#include <stdio.h>
-
-typedef int UNSIGNED_BYTE, SIGNED_BYTE, SIGNED_PAIR;
-typedef unsigned UNSIGNED_PAIR;
-typedef long UNSIGNED_TRIPLE, SIGNED_TRIPLE, SIGNED_QUAD;
-typedef unsigned long UNSIGNED_QUAD;
-
-extern UNSIGNED_BYTE get_unsigned_byte (FILE *fp);
-extern SIGNED_BYTE get_signed_byte (FILE *fp);
-extern UNSIGNED_PAIR get_unsigned_pair (FILE *fp);
-extern SIGNED_PAIR get_signed_pair (FILE *fp);
-extern UNSIGNED_TRIPLE get_unsigned_triple (FILE *fp);
-extern UNSIGNED_TRIPLE get_unsigned_triple_kanji (FILE *fp);
-extern SIGNED_TRIPLE get_signed_triple (FILE *fp);
-extern UNSIGNED_QUAD get_unsigned_quad (FILE *fp);
-extern SIGNED_QUAD get_signed_quad (FILE *fp);
-
-extern void put_unsigned_byte (SIGNED_QUAD quad, FILE *fp);
-extern void put_signed_byte (SIGNED_QUAD quad, FILE *fp);
-extern void put_unsigned_pair (SIGNED_QUAD quad, FILE *fp);
-extern void put_signed_pair (SIGNED_QUAD quad, FILE *fp);
-extern void put_unsigned_triple (SIGNED_QUAD quad, FILE *fp);
-extern void put_signed_triple (SIGNED_QUAD quad, FILE *fp);
-extern void put_signed_quad (SIGNED_QUAD quad, FILE *fp);
-
-extern void sput_signed_pair (char *buf, SIGNED_QUAD quad);
-extern void sput_signed_quad (char *buf, SIGNED_QUAD quad);
-
-#ifndef KPATHSEA
-# ifdef concat
-# undef concat
-extern char *concat (const char *s1, const char *s2);
-# endif
-extern char *concat3 (const char *s1, const char *s2, const char *s3);
-extern char *make_suffix (const char *s, const char *suffix);
-#endif
-
-#define M_FAIL 0x01
-#define M_VERBOSE 0x02
-#define M_WARNING 0x04
-#define M_DEBUG 0x08
-#define M_USAGE 0x10
-
-extern void msg_out (int level, const char *fmt, ...);
-
-/* Global Variables */
-extern int verbose, do_smashchars;
-extern FILE *infp, *outfp, *bbxfp, *frmfp;
-extern char *infname, *bbxfname, *frmfname;
-extern SIGNED_QUAD dbg_location, rule_width;
-
-#define WEB_INFINITY 0x7FFFFFFFL //017777777777
-
-#define VERSION "20070107"
-
-#endif /* _UTILS_H_ */