From 2b8ef629c516c5920bc110d8050256e8baaf5073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20L=2E=20=C5=A0ijanec?= Date: Thu, 14 May 2020 18:22:34 +0200 Subject: // => /**/ for CSS --- src/bvr.h | 2 ++ src/bvrcommands.c | 3 +++ src/jsbundle.c | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/bvr.h b/src/bvr.h index dd26653..413fe99 100644 --- a/src/bvr.h +++ b/src/bvr.h @@ -1,5 +1,7 @@ #pragma once #include +#include +#include #define SUCCESS 0 #define FAILURE -1 #define COPY_BUFFER_SIZE 128 diff --git a/src/bvrcommands.c b/src/bvrcommands.c index f08c0ab..5f58457 100644 --- a/src/bvrcommands.c +++ b/src/bvrcommands.c @@ -97,6 +97,9 @@ int bvr_handle_include(FILE * input, FILE * output) { if(stream == NULL) { strcat(notgoodatnamingvariables, BVR_COMMAND_FILE_EXT); stream = fopen(notgoodatnamingvariables+1, "r"); // ob1 fuckery + if(stream != NULL) { + break; + } } *singlepath = '\0'; } diff --git a/src/jsbundle.c b/src/jsbundle.c index a2f9b61..f7bf8d2 100644 --- a/src/jsbundle.c +++ b/src/jsbundle.c @@ -38,7 +38,7 @@ int bundle_js(char* bundle_filename, char* js_source_folder_name, char* file_ext strcat(source_filename, ent->d_name); source_file = fopen(source_filename, "r"); // printf("[jsbundle.c] source_filename: %s\n", source_filename); - fprintf(bundle_file, "\n// %s\n", source_filename); + fprintf(bundle_file, "\n/* %s */\n", source_filename); copy_buffer = fgetc(source_file); while (copy_buffer != EOF) { fputc(copy_buffer, bundle_file); -- cgit v1.2.3