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

📄 hp2648.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved.  The Berkeley software License Agreement * specifies the terms and conditions for redistribution. *//*	@(#)hp2648.h 1.1 92/07/30 SMI; from UCB 5.1 5/7/85	*//* * Displays plot files on an hp2648a graphics terminals.  I have heard * that all hp plotting devices use the same control sequences, so this * might work for all hp devices capable of plotting. */#include <stdio.h>#define TERMINAL "/dev/tty"#define	ENQ	05#define ACK	06#define ESC	033#define GRAPHIC	'*'#define MODE	'm'#define PLOT	'p'#define DISPLAY 'd'#define PENUP	'a'#define BINARY	'i'#define ASCII	'f'#define CR	'\n'#define TRUE  1#define FALSE 0#define xsc(xi) ((int) ((xi - lowx) * scalex + 0.5))#define ysc(yi) ((int) ((yi - lowy) * scaley + 0.5))extern int shakehands;extern int currentx;extern int currenty;extern int buffcount;extern int fildes;extern float lowx;extern float lowy;extern float scalex;extern float scaley;extern struct sgttyb sarg;

⌨️ 快捷键说明

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