1 /*
2  * Copyright (C) 2000,2001  Florian Sander
3  *
4  * $Id: global_vars.c (1.1.0) for AversE-XP v1.0+ 2003/12/06 [Xp-AvR] Exp $
5  */
6 
7 static char *glob_query, *glob_laston, *glob_otherchan, *glob_othernick;
8 static char *glob_remotebot, *glob_nick;
9 static struct slang_header *glob_slang;
10 static seendat *glob_seendat;
11 static seenreq *glob_seenrequest;
12 static int glob_seenrequests, glob_totalnicks, glob_totalbytes;
13 
reset_global_vars()14 static void reset_global_vars()
15 {
16   glob_query = glob_laston = glob_otherchan = glob_othernick = NULL;
17   glob_remotebot = glob_nick = NULL;
18   glob_seendat = NULL;
19   glob_slang = NULL;
20   glob_seenrequest = NULL;
21   glob_seenrequests = glob_totalnicks = glob_totalbytes = 0;
22 }
23