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 8adff592 2005-03-19 fw * $Id: tool.h,v 1.3 2005/03/19 18:43:53 fw 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 8adff592 2005-03-19 fw GLOBAL void ngt_TrimLastChr PARAMS((char *String, const char Chr ));
22 51d09fb4 2005-02-04 alex
23 8adff592 2005-03-19 fw GLOBAL void ngt_TrimStr PARAMS((char *String ));
24 0f3e84f4 2003-01-13 alex
25 8adff592 2005-03-19 fw GLOBAL char *ngt_LowerStr PARAMS((char *String ));
26 0f3e84f4 2003-01-13 alex
27 0f3e84f4 2003-01-13 alex
28 0f3e84f4 2003-01-13 alex #endif
29 0f3e84f4 2003-01-13 alex
30 0f3e84f4 2003-01-13 alex
31 0f3e84f4 2003-01-13 alex /* -eof- */