aboutsummaryrefslogtreecommitdiff
path: root/plugins/style/style.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/style/style.c')
-rw-r--r--plugins/style/style.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/style/style.c b/plugins/style/style.c
deleted file mode 100644
index a9a6be5..0000000
--- a/plugins/style/style.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#define STYLE_N 7624 + 1000
-
-void read_style_js(char* string)
-{
- 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);
-}