From 23d0fced6f9e4df44b37d0e45285ed0e37043489 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 20 Apr 2023 19:14:13 +0200 Subject: [PATCH] basically defined why2_chat_init_config //DO STUFF --- src/chat/config.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/chat/config.c b/src/chat/config.c index 15957e1..deba8f8 100644 --- a/src/chat/config.c +++ b/src/chat/config.c @@ -14,4 +14,19 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . -*/ \ No newline at end of file +*/ + +#include + +#include +#include + +#include + +void why2_chat_init_config(void) +{ + if (access(WHY2_CHAT_CONFIG, R_OK) != 0) //CONFIG DOESN'T EXIST + { + //DO STUFF + } +} \ No newline at end of file