diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-06 16:49:56 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-06 16:49:56 +0000 |
| commit | 175b20bbb558a3aa833ee5a37ab05913c5a9edc1 (patch) | |
| tree | 4766a93981e9697786eb43fb239b0637455189d4 /src | |
| parent | 33944e8cdb4e03d624bbc08b7a132d3b2440ec8c (diff) | |
| download | ngircd-175b20bbb558a3aa833ee5a37ab05913c5a9edc1.tar.gz ngircd-175b20bbb558a3aa833ee5a37ab05913c5a9edc1.zip | |
- neue Funktion Client_IsValidNick().
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/client.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ngircd/client.h b/src/ngircd/client.h index 83063a87..30cd17ac 100644 --- a/src/ngircd/client.h +++ b/src/ngircd/client.h @@ -9,11 +9,14 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: client.h,v 1.21 2002/01/29 00:14:49 alex Exp $ + * $Id: client.h,v 1.22 2002/02/06 16:49:56 alex Exp $ * * client.h: Konfiguration des ngircd (Header) * * $Log: client.h,v $ + * Revision 1.22 2002/02/06 16:49:56 alex + * - neue Funktion Client_IsValidNick(). + * * Revision 1.21 2002/01/29 00:14:49 alex * - neue Funktion Client_TopServer(), Client_NewXXX() angepasst. * @@ -194,6 +197,8 @@ GLOBAL INT Client_MyUserCount( VOID ); GLOBAL INT Client_MyServiceCount( VOID ); GLOBAL INT Client_MyServerCount( VOID ); +GLOBAL BOOLEAN Client_IsValidNick( CHAR *Nick ); + #endif |