mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
91 lines
2.1 KiB
C
91 lines
2.1 KiB
C
/*
|
|
#FILENAME#
|
|
|
|
#DESCRIPTION#
|
|
|
|
Copyright (C) 2001 #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
|
|
|
|
*/
|
|
static const char rcsid[] =
|
|
"$Id$";
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
#endif
|
|
#ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
|
|
#include "qfcc.h"
|
|
|
|
static int auxfunctions_size;
|
|
int num_auxfunctions;
|
|
pr_auxfunction_t *auxfunctions;
|
|
|
|
static int linenos_size;
|
|
int num_linenos;
|
|
pr_lineno_t *linenos;
|
|
|
|
static int locals_size;
|
|
int num_locals;
|
|
ddef_t *locals;
|
|
|
|
pr_auxfunction_t *
|
|
new_auxfunction (void)
|
|
{
|
|
if (num_auxfunctions == auxfunctions_size) {
|
|
auxfunctions_size += 1024;
|
|
auxfunctions = realloc (auxfunctions,
|
|
auxfunctions_size * sizeof (pr_auxfunction_t));
|
|
}
|
|
memset (&auxfunctions[num_auxfunctions], 0,
|
|
sizeof (linenos[num_auxfunctions]));
|
|
return &auxfunctions[num_auxfunctions++];
|
|
}
|
|
|
|
pr_lineno_t *
|
|
new_lineno (void)
|
|
{
|
|
if (num_linenos == linenos_size) {
|
|
linenos_size += 1024;
|
|
linenos = realloc (linenos, linenos_size * sizeof (pr_lineno_t));
|
|
}
|
|
memset (&linenos[num_linenos], 0, sizeof (linenos[num_linenos]));
|
|
return &linenos[num_linenos++];
|
|
}
|
|
|
|
ddef_t *
|
|
new_local (void)
|
|
{
|
|
if (num_locals == locals_size) {
|
|
locals_size += 1024;
|
|
locals = realloc (locals, locals_size * sizeof (ddef_t));
|
|
}
|
|
memset (&locals[num_locals], 0, sizeof (locals[num_locals]));
|
|
return &locals[num_locals++];
|
|
}
|