quote-bot/io.h
Bubblegumdrop 823330dde9 Insert, update, run script, run single query.
Most of the basic db functionality is in place now.

Changing print_col out for a user-supplied callback function might be a
cool idea.
2021-03-11 12:48:15 -05:00

10 lines
201 B
C

#ifndef IO_H
#define IO_H
#include <stdio.h>
char *file_read(const char *filename, size_t *readSize);
size_t file_write(const char *fileName, const void *data, const size_t size);
#endif /* IO_H */