Explorar el Código

Moved headers to a subdirectory.

Aaro Saila hace 1 mes
padre
commit
07844f1f79
Se han modificado 5 ficheros con 3 adiciones y 3 borrados
  1. 0 0
      include/scufcont/DArray.h
  2. 0 0
      include/scufcont/DString.h
  3. 0 0
      include/scufcont/scufcont.h
  4. 2 2
      src/DString.c
  5. 1 1
      src/scufcont.c

+ 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;