2002-07-31 22:03:53 +00:00
|
|
|
/*
|
|
|
|
#FILENAME#
|
|
|
|
|
|
|
|
#DESCRIPTION#
|
|
|
|
|
|
|
|
Copyright (C) 2002 #AUTHOR#
|
|
|
|
|
|
|
|
Author: #AUTHOR#
|
|
|
|
Date: #DATE#
|
|
|
|
|
|
|
|
This program 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
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2002-08-19 02:48:38 +00:00
|
|
|
#ifndef __QF_idparse_h
|
|
|
|
#define __QF_idparse_h
|
|
|
|
|
2002-07-31 22:13:15 +00:00
|
|
|
extern const char *com_token;
|
|
|
|
|
2002-08-19 02:48:38 +00:00
|
|
|
struct cbuf_args_s;
|
|
|
|
|
2002-07-31 22:03:53 +00:00
|
|
|
const char *COM_Parse (const char *data);
|
2002-08-19 02:48:38 +00:00
|
|
|
void COM_TokenizeString (const char *str, struct cbuf_args_s *args);
|
2002-08-03 06:04:00 +00:00
|
|
|
|
|
|
|
extern struct cbuf_interpreter_s id_interp;
|
2002-08-19 02:48:38 +00:00
|
|
|
|
|
|
|
#endif//__QF_idparse_h
|