Added R methods and their c counterparts for connection and database management

This commit is contained in:
2020-10-02 13:12:03 +01:00
parent 91013ea064
commit 907d848791
19 changed files with 847 additions and 28 deletions

View File

@@ -5,11 +5,9 @@
#include <stdint.h>
struct modb_t {
char *name;
const char *name;
size_t name_len;
};
struct modb_t *modbAlloc(const char *name, size_t name_len);
void modbRelease(struct modb_t **modb);
#endif // H__MODB_TYPES__