Procházet zdrojové kódy

Moved headers to a subdirectory.

Aaro Saila před 1 měsícem
rodič
revize
07844f1f79

+ 0 - 0
include/DArray.h → include/scufcont/DArray.h


+ 0 - 0
include/DString.h → include/scufcont/DString.h


+ 0 - 0
include/scufcont.h → include/scufcont/scufcont.h


+ 2 - 2
src/DString.c

@@ -3,8 +3,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "scufcont.h"
-#include "DString.h"
+#include "scufcont/scufcont.h"
+#include "scufcont/DString.h"
 
 ScufContResult SCDString_alloc(SCDString* dstr, const char* str, const size_t len) {
     dstr->data = (char*) malloc(sizeof(char) * (len + 1));

+ 1 - 1
src/scufcont.c

@@ -1,3 +1,3 @@
-#include "scufcont.h"
+#include "scufcont/scufcont.h"
 
 const char* SCUFCONT_VERSION = _SCUFCONT_VERSION;