mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-24 21:00:28 +00:00
14 lines
267 B
C
14 lines
267 B
C
![]() |
// Copyright (c) 2023 Anton Zhiyanov, MIT License
|
||
|
// https://github.com/nalgeon/sqlean
|
||
|
|
||
|
// Unicode support for SQLite.
|
||
|
|
||
|
#ifndef UNICODE_EXTENSION_H
|
||
|
#define UNICODE_EXTENSION_H
|
||
|
|
||
|
#include "sqlite3ext.h"
|
||
|
|
||
|
int unicode_init(sqlite3* db);
|
||
|
|
||
|
#endif /* UNICODE_EXTENSION_H */
|