rosenrot/plugins/style/style.c

31 lines
616 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2024-03-16 10:57:32 +00:00
#define STYLE_N 7275 + 1000
void read_style_js(char* string)
{
2024-03-18 00:31:11 +00:00
FILE* fp = fopen("/opt/rosenrot/style.js", "r");
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);
}
/*
int main(){
char* readability_js = malloc(STYLE_N+1);
read_readability_js(readability_js);
printf("%s", readability_js);
free(readability_js);
}
*/