summary refs log tree commit diff
path: root/src/tool/tool.h
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2008-08-17 13:49:32 +0200
committerAlexander Barton <alex@barton.de>2008-09-23 11:53:15 +0200
commit91e87a37051018c100cff6c72eb7aaf823efe894 (patch)
tree71a1e91c84d94273c8587f7a8c8b936d0c4afd4f /src/tool/tool.h
parent71e9ac486f1bdbe7e14adc20969c065f6bbeafe4 (diff)
downloadngircd-91e87a37051018c100cff6c72eb7aaf823efe894.tar.gz
ngircd-91e87a37051018c100cff6c72eb7aaf823efe894.zip
New function ngt_UpperStr()
Diffstat (limited to 'src/tool/tool.h')
-rw-r--r--src/tool/tool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tool/tool.h b/src/tool/tool.h
index 9bb7983f..d17e7872 100644
--- a/src/tool/tool.h
+++ b/src/tool/tool.h
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2008 by 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
@@ -8,8 +8,6 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: tool.h,v 1.6 2008/02/26 22:04:18 fw Exp $
- *
  * Tool functions (Header)
  */
 
@@ -28,7 +26,9 @@ 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 ));
+
 #endif