Revision: | 1.1 |
Committed: | Sat Nov 15 02:13:37 2003 UTC (20 years, 10 months ago) by schorsch |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3, HEAD |
Log Message: | Continued ANSIfication, and reduced other compile warnings. |
# | User | Rev | Content |
---|---|---|---|
1 | schorsch | 1.1 | /* RCSid: $Id: span.h,v 1.2 2003/07/14 22:24:00 schorsch Exp $ */ |
2 | /* | ||
3 | * Structures for line segment output to dot matrix printers | ||
4 | */ | ||
5 | #ifndef _RAD_PSPLOT_H_ | ||
6 | #define _RAD_PSPLOT_H_ | ||
7 | |||
8 | #ifdef __cplusplus | ||
9 | extern "C" { | ||
10 | #endif | ||
11 | |||
12 | extern void init(char *s); | ||
13 | extern void done(void); | ||
14 | extern void segopen(char *s); | ||
15 | extern void segclose(void); | ||
16 | extern void doseg(register PRIMITIVE *p); | ||
17 | extern void plotvstr(register PRIMITIVE *p); | ||
18 | |||
19 | #ifdef __cplusplus | ||
20 | } | ||
21 | #endif | ||
22 | #endif /* _RAD_PSPLOT_H_ */ | ||
23 |