diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-11 00:47:34 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-11 00:47:34 +0800 |
commit | 1b1142e4431812346c0d49e9581b6c1a964e949d (patch) | |
tree | 0bbfd351539dbd6505dcbd8c601adbd3558fbc53 /include | |
parent | cc97eef7be4a7c4beeff5789e00bedbe505a3e85 (diff) | |
download | pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar.gz pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar.bz2 pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar.lz pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar.xz pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.tar.zst pttbbs-1b1142e4431812346c0d49e9581b6c1a964e949d.zip |
* add is_valid_brdname() to cmbbs
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4553 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/cmbbs.h | 1 | ||||
-rw-r--r-- | include/proto.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/cmbbs.h b/include/cmbbs.h index 6683975e..1ae86161 100644 --- a/include/cmbbs.h +++ b/include/cmbbs.h @@ -27,6 +27,7 @@ extern const char* money_level(int money); /* string.c */ extern void obfuscate_ipstr(char *s); +extern bool is_valid_brdname(const char *brdname); /* time.c */ extern const char *Now(); // m3 flavor time string diff --git a/include/proto.h b/include/proto.h index e0825f08..c30835a5 100644 --- a/include/proto.h +++ b/include/proto.h @@ -61,7 +61,6 @@ int inc_badsale(const char *, int num); /* bbs */ void delete_allpost(const char *userid); -int invalid_brdname(const char *brd); int del_range(int ent, const fileheader_t *fhdr, const char *direct); int cmpfowner(fileheader_t *fhdr); int b_note_edit_bname(int bid); |