Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature-vt/sys/src/cmd/postscript/download/download.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
/*
2
 *
3
 * The font data for a printer is saved in an array of the following type.
4
 *
5
 */
6
 
7
typedef struct map {
8
	char	*font;		/* a request for this PostScript font */
9
	char	*file;		/* means copy this unix file */
10
	int	downloaded;	/* TRUE after *file is downloaded */
11
} Map;
12
 
13
Map	*allocate();
14