home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07094a < prev    next >
Text File  |  1991-05-27  |  205b  |  12 lines

  1. Display         *display;
  2. char            *font_name;
  3. XFontStruct     *font;
  4.  
  5. font = XLoadQueryFont( display,
  6.        font_name );
  7.  
  8. if ( font != (XFontStruct *) NULL )
  9.    {
  10.    /* success */
  11.    }
  12.