This repository has been archived on 2025-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
Breeze/config/import.c
2025-04-01 20:57:33 +02:00

18 lines
284 B
C

//
// Created by nano on 4/1/25.
//
#include <limits.h>
#include <stdio.h>
void loadConfig(char *filepath) {
FILE *fp;
fp = fopen(filepath, "r");
char configFile[1024];
while (fgets(configFile, 1024, fp)) {
printf("%s", configFile);
}
fclose(fp);
}