home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 344b.lha / plplot_v2.6 / src / pltext.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-27  |  204 b   |  14 lines

  1. /* Switches back to text mode */
  2.  
  3. #include "plplot.h"
  4.  
  5. void pltext()
  6. {
  7.       PLINT level;
  8.  
  9.       glev(&level);
  10.       if (level < 1) plexit("Please call plstar before calling pltext.");
  11.  
  12.       grtext();
  13. }
  14.