#ifndef _USER_H_ #define _USER_H_ #define USERS_MAX 1000 struct user_t { unsigned long hash; char *nick; unsigned long lines[24*4]; unsigned long long words; struct user_t *next; }; void user_init(); struct user_t *user_get(char *_nick); void user_free(); extern struct user_t *users; #endif