Blame


1 0f3e84f4 2003-01-13 alex /*
2 0f3e84f4 2003-01-13 alex * ngIRCd -- The Next Generation IRC Daemon
3 0f3e84f4 2003-01-13 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 0f3e84f4 2003-01-13 alex *
5 0f3e84f4 2003-01-13 alex * This program is free software; you can redistribute it and/or modify
6 0f3e84f4 2003-01-13 alex * it under the terms of the GNU General Public License as published by
7 0f3e84f4 2003-01-13 alex * the Free Software Foundation; either version 2 of the License, or
8 0f3e84f4 2003-01-13 alex * (at your option) any later version.
9 0f3e84f4 2003-01-13 alex * Please read the file COPYING, README and AUTHORS for more information.
10 0f3e84f4 2003-01-13 alex *
11 0f3e84f4 2003-01-13 alex * $Id: tool.h,v 1.1 2003/01/13 12:20:16 alex Exp $
12 0f3e84f4 2003-01-13 alex *
13 0f3e84f4 2003-01-13 alex * Tool functions (Header)
14 0f3e84f4 2003-01-13 alex */
15 0f3e84f4 2003-01-13 alex
16 0f3e84f4 2003-01-13 alex
17 0f3e84f4 2003-01-13 alex #ifndef __tool_h__
18 0f3e84f4 2003-01-13 alex #define __tool_h__
19 0f3e84f4 2003-01-13 alex
20 0f3e84f4 2003-01-13 alex
21 0f3e84f4 2003-01-13 alex GLOBAL VOID ngt_TrimStr PARAMS((CHAR *String ));
22 0f3e84f4 2003-01-13 alex
23 0f3e84f4 2003-01-13 alex GLOBAL CHAR *ngt_LowerStr PARAMS((CHAR *String ));
24 0f3e84f4 2003-01-13 alex
25 0f3e84f4 2003-01-13 alex
26 0f3e84f4 2003-01-13 alex #endif
27 0f3e84f4 2003-01-13 alex
28 0f3e84f4 2003-01-13 alex
29 0f3e84f4 2003-01-13 alex /* -eof- */