/* Header file: comment.h ** ** Author: Paul W. Carlson April 1992 */ #include struct comment { double x, y; char *font; int fontsize; int color; }; #ifdef MAIN struct comment cmt; #else extern struct comment cmt; #endif