download.h 291 B

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