feat: add rlib dependency for runtime library support in project

This commit is contained in:
2024-11-28 22:28:33 +00:00
parent ded3efbb70
commit c3ac4ce96f
6 changed files with 8456 additions and 4 deletions
+4
View File
@@ -1,5 +1,9 @@
# SORM # SORM
## Todo
- auto complete table / view names.
## Description ## 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! 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.
+1 -1
View File
@@ -2,7 +2,7 @@
#define SORM_H #define SORM_H
#include "str.h" #include "str.h"
#include <ctype.h> #include <ctype.h>
#include <rlib.h> #include "rlib.h"
#include <sqlite3.h> #include <sqlite3.h>
#include <stdarg.h> #include <stdarg.h>
#include <stdbool.h> #include <stdbool.h>
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef SORM_STR_H #ifndef SORM_STR_H
#define SORM_STR_H #define SORM_STR_H
#include <rlib.h> #include "rlib.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>