18 lines
284 B
C
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);
|
|
|
|
}
|