diff options
-rw-r--r-- | plugtest.c | 10 | ||||
-rw-r--r-- | powwow-muc.c | 6 |
2 files changed, 16 insertions, 0 deletions
@@ -4,6 +4,16 @@ #include "cmd.h" #include "tty.h" +/* Bare test plugin for powwow + * Author: Steve Slaven - http://hoopajoo.net + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + */ + void plugtest( char *arg ); cmdstruct mycommand = { NULL, NULL, "plugtest", plugtest, "test command" }; diff --git a/powwow-muc.c b/powwow-muc.c index d9b03e2..c98547e 100644 --- a/powwow-muc.c +++ b/powwow-muc.c @@ -5,6 +5,12 @@ /* Curses based powwow movie player. * Author: Steve Slaven - http://hoopajoo.net + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * */ #define JUMP_SMALL 1000 |