X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftool%2Ftool.h;h=b05649a9df8f0bc2e47542e9289704dacf90a7d2;hb=bfc727ce4927bca788896f29b1147ff6eac8de26;hp=13d4a9fca27252762db261e06609d10f2b65b196;hpb=51d09fb4f7a454c86012abe52532d6383bea11d5;p=ngircd-alex.git diff --git a/src/tool/tool.h b/src/tool/tool.h index 13d4a9fc..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.2 2005/02/04 13:09:03 alex Exp $ - * - * Tool functions (Header) */ - #ifndef __tool_h__ #define __tool_h__ +/** + * @file + * Tool functions (Header) + */ -GLOBAL VOID ngt_TrimLastChr PARAMS((CHAR *String, CONST CHAR Chr )); +#include "portab.h" -GLOBAL VOID ngt_TrimStr PARAMS((CHAR *String )); +GLOBAL void ngt_TrimLastChr PARAMS((char *String, const char Chr )); -GLOBAL CHAR *ngt_LowerStr PARAMS((CHAR *String )); +GLOBAL void ngt_TrimStr PARAMS((char *String )); +GLOBAL char *ngt_UpperStr PARAMS((char *String )); +GLOBAL char *ngt_LowerStr PARAMS((char *String )); +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- */