| Revision: | 2.3 |
| Committed: | Fri Jun 27 11:32:12 2003 UTC (22 years, 4 months ago) by schorsch |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rad6R0, rad5R4, rad5R3, rad5R2, rad5R1, rad5R0, rad4R2P2, rad4R2P1, rad4R2, rad4R1, rad4R0, rad3R9, rad3R8, rad3R7P2, rad3R7P1, rad3R6P1, rad3R6, HEAD |
| Changes since 2.2: | +16 -1 lines |
| Log Message: | Instrumented headers against multiple inclusion and for use from C++. Continued ANSIfication. |
| # | Content |
|---|---|
| 1 | /* RCSid: $Id: setscan.h,v 2.2 2003/02/22 02:07:30 greg Exp $ */ |
| 2 | /* |
| 3 | * Defines for programs using setscan() |
| 4 | */ |
| 5 | #ifndef _RAD_SETSCAN_H_ |
| 6 | #define _RAD_SETSCAN_H_ |
| 7 | #ifdef __cplusplus |
| 8 | extern "C" { |
| 9 | #endif |
| 10 | |
| 11 | |
| 12 | #define ANGLE short |
| 13 | #define AEND (-1) |
| 14 | |
| 15 | int setscan(register ANGLE *ang, register char *arg); |
| 16 | |
| 17 | |
| 18 | #ifdef __cplusplus |
| 19 | } |
| 20 | #endif |
| 21 | #endif /* _RAD_SETSCAN_H_ */ |
| 22 |