This commit is contained in:
Ludovic Jacomme 2002-04-26 12:54:30 +00:00
parent c5265bdb23
commit 61ac5270ba
1 changed files with 15 additions and 11 deletions

View File

@ -1,7 +1,10 @@
/*
* $Log: gen_print.c,v $
* Revision 1.1 2002/04/26 09:51:07 ludo
* Initial revision
* Revision 1.2 2002/04/26 12:54:30 ludo
* Hi
*
* Revision 1.1.1.1 2002/04/26 09:51:07 ludo
* Mise a plat de mbkvhdlg
*
* Revision 1.1.1.1 2002/04/11 08:54:52 fred
* Importing mbkvhdlg into the new Alliance CVS tree
@ -33,7 +36,7 @@
*
*/
#ident "$Id: gen_print.c,v 1.1 2002/04/26 09:51:07 ludo Exp $"
#ident "$Id: gen_print.c,v 1.2 2002/04/26 12:54:30 ludo Exp $"
#include <stdio.h>
#include <string.h>
#include <mut.h>
@ -77,14 +80,6 @@ int i;
}
}
void debuglogen(logen_list *g, int level)
{
while (g) {
printlogen(g, level);
g=g->NEXT;
}
}
static void printlogen(logen_list *g, int level)
{
int i;
@ -139,6 +134,15 @@ int i;
}
}
void debuglogen(logen_list *g, int level)
{
while (g) {
printlogen(g, level);
g=g->NEXT;
}
}
#if 0
static void printlogenvalue(logen_list *g)
{