about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2001-12-29 03:05:34 +0000
committerAlexander Barton <alex@barton.de>2001-12-29 03:05:34 +0000
commitb61207742f1746c695838076434caadeed528ca4 (patch)
tree4fe942090fe0540ebf67b6a67353df53aaf64fe9 /src
parent2a29a72456b5b773b87413387c79b9b26b135ae9 (diff)
downloadngircd-b61207742f1746c695838076434caadeed528ca4.tar.gz
ngircd-b61207742f1746c695838076434caadeed528ca4.zip
- Funktionsnamen etwas konsequenter umbenannt :-)
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/tool.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/ngircd/tool.c b/src/ngircd/tool.c
index b9b8fc26..f7daea1d 100644
--- a/src/ngircd/tool.c
+++ b/src/ngircd/tool.c
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: tool.c,v 1.2 2001/12/12 17:20:33 alex Exp $
+ * $Id: tool.c,v 1.3 2001/12/29 03:05:34 alex Exp $
  *
  * tool.c: Hilfsfunktionen, ggf. Platformabhaengig
  *
  * $Log: tool.c,v $
+ * Revision 1.3  2001/12/29 03:05:34  alex
+ * - Funktionsnamen etwas konsequenter umbenannt :-)
+ *
  * Revision 1.2  2001/12/12 17:20:33  alex
  * - Tool-Funktionen haben nun das Praefix "ngt_".
  *
@@ -34,9 +37,9 @@
 #include "tool.h"
 
 
-GLOBAL VOID ngt_Trim_Str( CHAR *String )
+GLOBAL VOID ngt_TrimStr( CHAR *String )
 {
-	/* Mit ngt_Trim_Str() werden fuehrende und folgende Leerzeichen,
+	/* Mit ngt_TrimStr() werden fuehrende und folgende Leerzeichen,
 	 * Tabulatoren und Zeilenumbrueche (ASCII 10 und ASCII 13) aus
 	 * dem String entfernt. */
 	
@@ -55,7 +58,7 @@ GLOBAL VOID ngt_Trim_Str( CHAR *String )
 	*(++ptr) = '\0';
 
 	memmove( String, start, strlen( start ) + 1 );
-} /* ngt_Trim_Str */
+} /* ngt_TrimStr */
 
 
 /* -eof- */