summary refs log tree commit diff
path: root/src/tool/tool.h
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2005-03-19 18:43:48 +0000
committerFlorian Westphal <fw@strlen.de>2005-03-19 18:43:48 +0000
commit8adff5922376676c2eeb49de1cbab86cc345b887 (patch)
treef08c4c54b987b83436dfce2cfe5af829c8ccf689 /src/tool/tool.h
parent27d93d7d8c1dacb3a9874084a67629df26f96bb1 (diff)
downloadngircd-8adff5922376676c2eeb49de1cbab86cc345b887.tar.gz
ngircd-8adff5922376676c2eeb49de1cbab86cc345b887.zip
Remove INT, LONG, BOOLEAN, STATIC, CONST, CHAR datatypes.
use stdbool.h / inttypes.h if available.
Diffstat (limited to 'src/tool/tool.h')
-rw-r--r--src/tool/tool.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tool/tool.h b/src/tool/tool.h
index 13d4a9fc..5b386e59 100644
--- a/src/tool/tool.h
+++ b/src/tool/tool.h
@@ -8,7 +8,7 @@
  * (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 $
+ * $Id: tool.h,v 1.3 2005/03/19 18:43:53 fw Exp $
  *
  * Tool functions (Header)
  */
@@ -18,11 +18,11 @@
 #define __tool_h__
 
 
-GLOBAL VOID ngt_TrimLastChr PARAMS((CHAR *String, CONST CHAR Chr ));
+GLOBAL void ngt_TrimLastChr PARAMS((char *String, const char Chr ));
 
-GLOBAL VOID ngt_TrimStr PARAMS((CHAR *String ));
+GLOBAL void ngt_TrimStr PARAMS((char *String ));
 
-GLOBAL CHAR *ngt_LowerStr PARAMS((CHAR *String ));
+GLOBAL char *ngt_LowerStr PARAMS((char *String ));
 
 
 #endif