defined why2_chat_init_client_config

This commit is contained in:
Václav Šmejkal 2023-08-26 18:41:43 +02:00
parent d2b8f414e7
commit bc77ccd04f
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -32,6 +32,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <why2/misc.h> #include <why2/misc.h>
#define SERVER "server.yml" #define SERVER "server.yml"
#define CLIENT "client.yml"
//LOCAL //LOCAL
void init_config(char *filename) void init_config(char *filename)
@ -75,3 +76,8 @@ void why2_chat_init_server_config(void)
{ {
init_config(SERVER); init_config(SERVER);
} }
void why2_chat_init_client_config(void)
{
init_config(CLIENT);
}