home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / c / lex.arc / LEXSWI.C < prev    next >
C/C++ Source or Header  |  1980-01-01  |  382b  |  24 lines

  1. /*
  2.  * lexswitch -- switch lex tables
  3.  */
  4.  
  5. /*
  6.  * Bob Denny     28-Aug-82  Remove reference to stdio.h
  7.  * Scott Guthery 20-Nov-83    Adapt for IBM PC & DeSmet C
  8.  */
  9.  
  10. #include <lex.h>
  11.  
  12. extern struct lextab *_tabp;
  13.  
  14. struct lextab *
  15. lexswitch(lp)
  16. struct lextab *lp;
  17. {
  18.         register struct lextab *olp;
  19.  
  20.         olp = _tabp;
  21.         _tabp = lp;
  22.         return(olp);
  23. }
  24.