home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This software is Copyright (c) 1991 by Daniel Weaver.
- **
- ** Permission is hereby granted to copy, distribute or otherwise
- ** use any part of this package as long as you do not try to make
- ** money from it or pretend that you wrote it. This copyright
- ** notice must be maintained in any copy made.
- **
- ** Use of this software constitutes acceptance for use in an AS IS
- ** condition. There are NO warranties with regard to this software.
- ** In no event shall the author be liable for any damages whatsoever
- ** arising out of or in connection with the use or performance of this
- ** software. Any use of this software is at the user's own risk.
- **
- ** If you make modifications to this software that you feel
- ** increases it usefulness for the rest of the community, please
- ** email the changes, enhancements, bug fixes as well as any and
- ** all ideas to me. This software is going to be maintained and
- ** enhanced as deemed necessary by the community.
- */
-
- /*
- ** This subroutine should be tparm() as written by the Free Software Foundation.
- ** But the nice folks at FSF would not let me give it away free.
- ** The version I use for my testing was lifted from emacs and I recommend
- ** that you do the same. FSF should change its name to the Free Lunch
- ** Foundation.
- **
- ** System V users can deep 6 this file all together.
- */
- #ifdef TESTCAP
- extern char *tgoto();
-
- char *
- tparm(cap, a, b)
- char *cap;
- int a, b;
- {
- if (cap) return tgoto(cap, b, a);
- return "";
- }
- #endif
-