summaryrefslogtreecommitdiff
path: root/src/common/sqlite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/sqlite.h')
-rw-r--r--src/common/sqlite.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/sqlite.h b/src/common/sqlite.h
index 66fb773..559af38 100644
--- a/src/common/sqlite.h
+++ b/src/common/sqlite.h
@@ -26,6 +26,8 @@
#include <stdint.h>
+#include <sys/types.h>
+
/* Type pour les insertions brutes */
@@ -52,5 +54,9 @@ typedef struct _bound_value
} bound_value;
+/* Effectue une recherche au sein d'un ensemble de valeurs. */
+const bound_value *find_bound_value(const bound_value *, size_t, const char *);
+
+
#endif /* _COMMON_SQLITE_H */