Mercurial > hg > octave-lyh
diff src/lex.h @ 1:78fd87e624cb
[project @ 1993-08-08 01:13:40 by jwe]
Initial revision
author | jwe |
---|---|
date | Sun, 08 Aug 1993 01:13:40 +0000 |
parents | |
children | 7849db4b6dbc |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/src/lex.h @@ -0,0 +1,57 @@ +// lex.h -*- C++ -*- +/* + +Copyright (C) 1992, 1993 John W. Eaton + +This file is part of Octave. + +Octave is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any +later version. + +Octave is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Octave; see the file COPYING. If not, write to the Free +Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#if !defined (_lex_h) +#define _lex_h 1 + +typedef struct yy_buffer_state *YY_BUFFER_STATE; + +// Associate a buffer with a new file to read. +extern YY_BUFFER_STATE create_buffer (FILE *f); + +// Report the current buffer. +extern YY_BUFFER_STATE current_buffer (void); + +// Connect to new buffer buffer. +extern void switch_to_buffer (YY_BUFFER_STATE buf); + +// Delete a buffer. +extern void delete_buffer (YY_BUFFER_STATE buf); + +// Restore a buffer (for unwind-prot). +extern void restore_input_buffer (void *buf); + +// Delete a buffer (for unwind-prot). +extern void delete_input_buffer (void *buf); + +// See if a function file has extra garbage after the end statement. +extern void check_for_garbage_after_fcn_def (void); + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; page-delimiter: "^/\\*" *** +;;; End: *** +*/