#ifndef __USERINFO_H__ #define __USERINFO_H__ #include "userinfoT.h" #include "lmp.h" /********************************************************/ /* retrieve the user information for the given nickname */ /********************************************************/ /* input: lmp=user_info_lmp to use */ /* nickname= nick to find */ /* uinfo= array filed on succes */ /********************************************************/ /* output: 0=ok, (*uinfo) contains the user information */ /* 1=not found or error. */ /********************************************************/ int get_user_info(LMP_ENTRY *lmp, char *nickname,LMP_UINFO *uinfo); #endif