- neue Funktion Channel_Count().

This commit is contained in:
Alexander Barton 2002-01-16 22:09:07 +00:00
parent 22cf0c5def
commit 568239244f
2 changed files with 16 additions and 2 deletions

View File

@ -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: channel.c,v 1.3 2002/01/02 02:42:58 alex Exp $
* $Id: channel.c,v 1.4 2002/01/16 22:09:07 alex Exp $
*
* channel.c: Management der Channels
*
* $Log: channel.c,v $
* Revision 1.4 2002/01/16 22:09:07 alex
* - neue Funktion Channel_Count().
*
* Revision 1.3 2002/01/02 02:42:58 alex
* - Copyright-Texte aktualisiert.
*
@ -52,4 +55,10 @@ GLOBAL VOID Channel_Exit( VOID )
} /* Channel_Exit */
GLOBAL INT Channel_Count( VOID )
{
return 0;
} /* Channel_Count */
/* -eof- */

View File

@ -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: channel.h,v 1.4 2002/01/02 02:42:58 alex Exp $
* $Id: channel.h,v 1.5 2002/01/16 22:09:07 alex Exp $
*
* channel.h: Management der Channels (Header)
*
* $Log: channel.h,v $
* Revision 1.5 2002/01/16 22:09:07 alex
* - neue Funktion Channel_Count().
*
* Revision 1.4 2002/01/02 02:42:58 alex
* - Copyright-Texte aktualisiert.
*
@ -44,6 +47,8 @@ typedef struct _CHANNEL
GLOBAL VOID Channel_Init( VOID );
GLOBAL VOID Channel_Exit( VOID );
GLOBAL INT Channel_Count( VOID );
#endif