added some code
[NextIRCd.git] / src / ircd_users.c
index 9faaacd2d9bfb1f9a30b0e5c21c5aeb6dbc46acc..f3fcbb5a635e59edc9485939cb4ca6bfbe46d730 100644 (file)
@@ -14,6 +14,9 @@
  * You should have received a copy of the GNU General Public License 
  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
  */
+
+#include <time.h>
+
 #include "struct_user.h"
 
 struct UserDictEntry {
@@ -33,6 +36,9 @@ void find_user_by_nick(char *nick) {
 }
 
 int is_nick_valid(char *nick) {
-       
+       return 1;
 }
 
+int is_ident_valid(char *ident) {
+       return 1;
+}