⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 glob.c

📁 这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易于我们学习和理解
💻 C
字号:
/* * * Global varibles - for PostScript translators. * */#include <stdio.h>#include "gen.h"char	**argv;				/* global so everyone can use them */int	argc;int	x_stat = 0;			/* program exit status */int	debug = OFF;			/* debug flag */int	ignore = OFF;			/* what we do with FATAL errors */long	lineno = 0;			/* line number */long	position = 0;			/* byte position */char	*prog_name = "";		/* and program name - for errors */char	*temp_file = NULL;		/* temporary file - for some programs */char	*fontencoding = NULL;		/* text font encoding scheme */int	dobbox = FALSE;			/* enable BoundingBox stuff if TRUE */double	pageheight = PAGEHEIGHT;	/* only for BoundingBox calculations! */double	pagewidth = PAGEWIDTH;int	reading = UTFENCODING;		/* input */int	writing = WRITING;		/* and output encoding */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -