/*
* user.c
*
* Functions to support player-objects (users)
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
#if 0 /* this function checks in MudOS if the object was ONCE interactive,
but there is no support for that here */
static int userp(object ob) {
return GLOBAL->userp(ob);
}
#endif
static object *users() {
return GLOBAL->users();
}
#ifdef MUDOS_LIVING
static object find_player(string name) {
return GLOBAL->find_player(name);
}
#endif