quakeforge/tools/qfprogs/source/lines.c

64 lines
1.3 KiB
C
Raw Normal View History

2002-09-07 06:47:16 +00:00
/*
#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 "QF/progs.h"
#include "qfprogs.h"
#include "lines.h"
void
dump_lines (progs_t *pr)
{
int i;
if (!pr->debug)
return;
for (i = 0; i < pr->debug->num_linenos; i++) {
pr_lineno_t *lineno = &pr->linenos[i];
printf ("%5d %5d\n", lineno->fa.addr, lineno->line);
}
}