Moved headers to a subdirectory.

This commit is contained in:
2026-08-13 19:45:11 +03:00
parent 61301a8862
commit 07844f1f79
5 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
View File
@@ -1,3 +1,3 @@
#include "scufcont.h"
#include "scufcont/scufcont.h"
const char* SCUFCONT_VERSION = _SCUFCONT_VERSION;