2023-02-05 02:21:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-03-28 16:16:14 +00:00
|
|
|
#include <string.h>
|
2024-03-29 20:40:13 +00:00
|
|
|
#define STYLE_N 7830 + 1000
|
2023-02-05 02:21:30 +00:00
|
|
|
|
2023-03-28 16:16:14 +00:00
|
|
|
void read_style_js(char* string)
|
|
|
|
{
|
2024-03-18 00:31:11 +00:00
|
|
|
FILE* fp = fopen("/opt/rosenrot/style.js", "r");
|
2023-03-28 16:16:14 +00:00
|
|
|
if (!fp) { // fp is NULL, fopen failed
|
|
|
|
fprintf(stderr, "Failed to open file\n");
|
|
|
|
string = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int i = 0;
|
|
|
|
int c;
|
|
|
|
while ((c = fgetc(fp)) != EOF) {
|
|
|
|
string[i++] = c;
|
|
|
|
}
|
|
|
|
string[i] = '\0';
|
|
|
|
fclose(fp);
|
2023-02-05 02:21:30 +00:00
|
|
|
}
|