--- lbbs/src/register.c 2005/03/20 17:37:14 1.2 +++ lbbs/src/register.c 2025/05/06 05:31:26 1.6 @@ -1,34 +1,31 @@ /*************************************************************************** - register.c - description - ------------------- - begin : Mon Oct 20 2004 - copyright : (C) 2004 by Leaflet - email : leaflet@leafok.com + register.c - description + ------------------- + Copyright : (C) 2004-2025 by Leaflet + Email : leaflet@leafok.com ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * + * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ +#include "register.h" #include "bbs.h" #include "common.h" #include "io.h" +#include "screen.h" +#include #include #include -int -user_register () +int user_register() { - char temp[256]; + display_file_ex(DATA_REGISTER, 1, 1); - strcpy (temp, app_home_dir); - strcat (temp, "data/register.txt"); - display_file_ex (temp, 1, 1); - - return -1; + return -1; }