diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-16 21:52:25 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-16 21:52:25 +0800 |
commit | 67cfe98259eff4e68469e90beb24c0fed9d54d2e (patch) | |
tree | 304678d2f6a9819e9279e7bb9ee92873f4392348 | |
parent | bb08f92f76be2a24f5101a8354038438a2d98cc0 (diff) | |
download | pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar.gz pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar.bz2 pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar.lz pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar.xz pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.tar.zst pttbbs-67cfe98259eff4e68469e90beb24c0fed9d54d2e.zip |
who wrote this.... @@
ptr = pool;
i = 0;
do {
i++;
} while (++ptr < v);
return i;
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@610 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/gomo.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/pttbbs/mbbsd/gomo.c b/pttbbs/mbbsd/gomo.c index 7822b090..bf9c9b97 100644 --- a/pttbbs/mbbsd/gomo.c +++ b/pttbbs/mbbsd/gomo.c @@ -1,4 +1,4 @@ -/* $Id: gomo.c,v 1.9 2002/07/22 19:02:00 in2 Exp $ */ +/* $Id: gomo.c,v 1.10 2003/01/16 13:52:25 kcwu Exp $ */ #include "bbs.h" static char *chess[] = {"¡´", "¡³"}; @@ -85,15 +85,7 @@ HO_log(char *user) static int countgomo() { - Horder_t *ptr; - int i; - - ptr = pool; - i = 0; - do { - i++; - } while (++ptr < v); - return i; + return v-pool; } static int |