home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / graphics.17 / graphics / graphics-0.17 / plot2tek / fontname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  1.2 KB  |  30 lines

  1. /* FONTNAME takes a string argument S containing the name of the desired current
  2.    font and sets the current font to that name.  If the string S is too long
  3.    it complains and sets the current font to the default. */
  4.  
  5. #include "sys-defines.h"
  6. #include "libplot.h"
  7.  
  8.  
  9. int
  10. fontname (s)
  11.     char *s;
  12. {
  13.   return 0;
  14. }
  15. /* libtek, a library of functions for tektronics 4010 compatible devices.
  16.    Copyright (C) 1989 Free Software Foundation, Inc.
  17.  
  18. libtek is distributed in the hope that it will be useful, but WITHOUT ANY
  19. WARRANTY.  No author or distributor accepts responsibility to anyone for the
  20. consequences of using it or for whether it serves any particular purpose or
  21. works at all, unless he says so in writing.  Refer to the GNU General Public
  22. License for full details.
  23.  
  24. Everyone is granted permission to copy, modify and redistribute libtek, but
  25. only under the conditions described in the GNU General Public License.  A copy
  26. of this license is supposed to have been given to you along with libtek so
  27. you can know your rights and responsibilities.  It should be in a file named
  28. COPYING.  Among other things, the copyright notice and this notice must be
  29. preserved on all copies.  */
  30.