X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Ftool%2Ftool.h;h=b05649a9df8f0bc2e47542e9289704dacf90a7d2;hp=bdd846f75eb9d5e82839669d5b195389cd30587f;hb=c5da48368569383d064a2325ab3b99d10287a085;hpb=82d32ffb28262b302fb435739e4c81bd3c1a1b85 diff --git a/src/tool/tool.h b/src/tool/tool.h index bdd846f7..b05649a9 100644 --- a/src/tool/tool.h +++ b/src/tool/tool.h @@ -1,31 +1,38 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2010 Alexander Barton (alex@barton.de) * * 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. * Please read the file COPYING, README and AUTHORS for more information. - * - * $Id: tool.h,v 1.4 2007/11/23 16:26:05 fw Exp $ - * - * Tool functions (Header) */ - #ifndef __tool_h__ #define __tool_h__ + +/** + * @file + * Tool functions (Header) + */ + #include "portab.h" GLOBAL void ngt_TrimLastChr PARAMS((char *String, const char Chr )); GLOBAL void ngt_TrimStr PARAMS((char *String )); +GLOBAL char *ngt_UpperStr PARAMS((char *String )); GLOBAL char *ngt_LowerStr PARAMS((char *String )); -GLOBAL bool ngt_IPStrToBin PARAMS((const char *ip_str, struct in_addr *inaddr)); +GLOBAL char *ngt_RandomStr PARAMS((char *String, const size_t len)); + +#ifdef SYSLOG +GLOBAL const char *ngt_SyslogFacilityName PARAMS((int Facility)); +GLOBAL int ngt_SyslogFacilityID PARAMS((char *Name, int DefaultFacility)); #endif +#endif /* -eof- */