2023-02-05 02:11:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2023-02-27 21:29:30 +00:00
|
|
|
#define READABILITY_N 85133 + 1000
|
2023-02-05 02:11:56 +00:00
|
|
|
|
|
|
|
void read_readability_js(char* string){
|
2023-03-28 01:28:43 +00:00
|
|
|
FILE *fp=fopen("/home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot/plugins/readability/readability.js", "r");
|
2023-02-05 02:11:56 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
int main(){
|
|
|
|
char* readability_js = malloc(READABILITY_N+1);
|
|
|
|
read_readability_js(readability_js);
|
|
|
|
printf("%s", readability_js);
|
|
|
|
free(readability_js);
|
|
|
|
}
|
|
|
|
*/
|