feat: add rlib.h dependency and update includes to local path for runtime library support

This commit is contained in:
2024-11-28 22:28:33 +00:00
parent 0dfeef5d9d
commit fc73c4221b
6 changed files with 8456 additions and 4 deletions
+4
View File
@@ -1,5 +1,9 @@
# SORM
## Todo
- auto complete table / view names.
## Description
SORM stands for SQL ORM. I made this because I have a love/hate relationship with both. I combined them together to have the best of both worlds!
+8448
View File
File diff suppressed because it is too large Load Diff
BIN
View File
Binary file not shown.
+2 -2
View File
@@ -2,7 +2,7 @@
#define SORM_H
#include "str.h"
#include <ctype.h>
#include <rlib.h>
#include "rlib.h"
#include <sqlite3.h>
#include <stdarg.h>
#include <stdbool.h>
@@ -550,4 +550,4 @@ void sormfmtd(char *csv) {
free(formatted);
}
#endif
#endif
BIN
View File
Binary file not shown.
+2 -2
View File
@@ -1,6 +1,6 @@
#ifndef SORM_STR_H
#define SORM_STR_H
#include <rlib.h>
#include "rlib.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -47,4 +47,4 @@ char *sormstrc(sormstr_t *str) {
return content;
}
#endif
#endif