home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / FONT_CMP.ZIP / $FONT.H < prev    next >
Text File  |  1993-10-25  |  280b  |  13 lines

  1. void text(int x, int y, char * str);
  2.  
  3. // Parameters:
  4. //
  5. // X: X coordinate of upper-left corner of beginning of text
  6. // Y: Y coordinate of upper-left corner of beginning of text
  7. // STR: Character string to print
  8.  
  9. // Example:
  10. //
  11. // text(130, 95, "This is a test.");
  12. //
  13.