You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
485 B
25 lines
485 B
15 years ago
|
// -*- C++ -*-
|
||
|
#ifndef _xdvi_h
|
||
|
#define _xdvi_h
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
/*
|
||
|
* Written by Eric C. Cooper, CMU
|
||
|
*/
|
||
|
|
||
|
#define ROUNDUP(x,y) (((x)+(y)-1)/(y))
|
||
|
|
||
|
extern unsigned long num (FILE *, int);
|
||
|
extern long snum(FILE *, int);
|
||
|
extern struct WindowRec mane, currwin;
|
||
|
|
||
|
#define one(fp) ((unsigned char) getc(fp))
|
||
|
#define sone(fp) ((long) one(fp))
|
||
|
#define two(fp) num (fp, 2)
|
||
|
#define stwo(fp) snum(fp, 2)
|
||
|
#define four(fp) num (fp, 4)
|
||
|
#define sfour(fp) snum(fp, 4)
|
||
|
|
||
|
#endif /* _xdvi_h */
|