home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / font_cmp / $font.h < prev    next >
Encoding:
Text File  |  1993-10-25  |  280 b   |  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.