URI:
       tdownload.h - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tdownload.h (290B)
       ---
            1 /*
            2  *
            3  * The font data for a printer is saved in an array of the following type.
            4  *
            5  */
            6 
            7 typedef struct map {
            8         char        *font;                /* a request for this PostScript font */
            9         char        *file;                /* means copy this unix file */
           10         int        downloaded;        /* TRUE after *file is downloaded */
           11 } Map;
           12 
           13 Map        *allocate();