systemd-gotify/config.c

49 lines
929 B
C
Raw Normal View History

2024-09-11 08:14:55 +00:00
#include"config.h"
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int loadConfig(char *str_file, char **str_entry,int size)
2024-09-11 08:14:55 +00:00
{
int i=0;
FILE *f_config;
2024-09-11 09:31:04 +00:00
char temp_str[256];
2024-09-11 08:14:55 +00:00
2024-09-11 08:54:21 +00:00
printf("\nopening config file\n");
f_config = fopen(str_file,"r");
2024-09-11 08:14:55 +00:00
if(f_config != NULL)
{
2024-09-11 08:54:21 +00:00
for(i=0;i<size;i++)
2024-09-11 08:14:55 +00:00
{
2024-09-11 08:54:21 +00:00
printf("for loop:%d\n",i);
printf("str:%s\n",str_entry[i]);
2024-09-11 09:31:04 +00:00
if(fgets(temp_str,256,f_config)!=NULL)
2024-09-11 08:14:55 +00:00
{
2024-09-11 09:31:04 +00:00
temp_str[strcspn(temp_str,"\n")]=0;
2024-09-11 08:54:21 +00:00
str_entry[i]=strdup(temp_str);
2024-09-11 09:14:30 +00:00
printf("module path:%s",str_entry[i]);
2024-09-11 08:14:55 +00:00
}
else
{
2024-09-11 08:54:21 +00:00
break;
2024-09-11 08:14:55 +00:00
fclose(f_config);
}
}
}
else
{
fprintf(stderr,"error opening file[%s]\n",str_file);
2024-09-11 08:14:55 +00:00
}
return 0;
}
2024-09-11 15:45:08 +00:00
/*int parseConfig(File *file, char *str_entry)
{
char sub_str[256];
if(strcmp(str_entry,"[Host]")==0)//section
{
fgets(sub_str,256,file);
//do sub parsing
}
}*/