home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / GRLF-C-2.ZIP / GFUNC / ATSAY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  714 b   |  34 lines

  1. /*
  2.  * atsay.c
  3.  * contains: atsay()
  4.  *
  5.  */
  6.  
  7. #include <stdio.h>
  8. #include "gfuncts.h"
  9.  
  10. /*
  11.  *  void
  12.  * atsay(line,column,string)
  13.  *
  14.  * ARGUMENT
  15.  *  (int)      line    =    line to move cursor to
  16.  *  (int)      column    =     column to move cursor to
  17.  *  (char *)     string  =    string to display at new cursor position
  18.  *
  19.  * DESCRIPTION
  20.  *  The cursor is positioned at the specified line and column on video
  21.  *  page 0.  The specified string is then printed beginning at the
  22.  *  new cursor position.
  23.  *
  24.  * AUTHOR
  25.  *   Copyright (C)1987-1990 Greenleaf Software Inc. All Rights Reserved.
  26.  */
  27. void GF_CONV atsay(line,column,string)
  28. int line,column;
  29. char *string;
  30. {
  31.     curset(line,column,0);
  32.     prints(string);
  33. }
  34.