1
0
Fork 0
firefox/third_party/sqlite3/ext/sqlite3_static_ext.h
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
693 B
C

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
/**
* This is an exported header containing declarations of methods for statically
* linked SQLite3 extensions.
*/
#ifndef SQLITE3_STATIC_EXT_H
#define SQLITE3_STATIC_EXT_H
#include "sqlite3.h"
#include "misc/carray.h"
#ifdef __cplusplus
extern "C" {
#endif
SQLITE_API int sqlite3_carray_init(sqlite3*, char**,
const sqlite3_api_routines*);
#ifdef __cplusplus
} /* end of the 'extern "C"' block */
#endif
#endif /* SQLITE3_STATIC_EXT_H */