diff options
-rw-r--r-- | mbbsd/stuff.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c index 73515eca..9d05843e 100644 --- a/mbbsd/stuff.c +++ b/mbbsd/stuff.c @@ -43,24 +43,6 @@ subject(char *title) return title; } -int is_validuserid(const char *id) -{ - int len, i; - if(id==NULL) - return 0; - len = strlen(id); - - if (len < 2 || len>IDLEN) - return 0; - - if (!isalpha(id[0])) - return 0; - for (i = 1; i < len; i++) - if (!isalnum(id[i])) - return 0; - return 1; -} - int is_uBM(const char *list, const char *id) { |