comment.h 212 B

1234567891011121314151617
  1. /* Header file: comment.h
  2. **
  3. ** Author: Paul W. Carlson April 1992
  4. */
  5. #include <stdio.h>
  6. struct comment
  7. {
  8. double x, y;
  9. char *font;
  10. int fontsize;
  11. int color;
  12. };
  13. extern struct comment cmt;