Added rlib
This commit is contained in:
parent
54e524995f
commit
68600e9b0f
@ -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!
|
||||||
|
|
||||||
|
4
sorm.h
4
sorm.h
@ -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>
|
||||||
@ -550,4 +550,4 @@ void sormfmtd(char *csv) {
|
|||||||
free(formatted);
|
free(formatted);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
4
str.h
4
str.h
@ -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>
|
||||||
@ -47,4 +47,4 @@ char *sormstrc(sormstr_t *str) {
|
|||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user