+
Point of view
All features
class SQLITE_PREPARED_QUERY
Summary
copyright
(C) 2006, 2014 Paolo Redaelli (C) 2007,2008 Raphael Mack
license
LGPL v2 or later
date
$Date$
revision
$Revision$
Direct parents
Inherit list: PREPARED_QUERY, SQLITE_PREPARED_STATEMENT
Insert list: SQLITE3_EXTERNALS, SQLITE_ERROR_CODES, SQLITE_TYPE_CODES
Overview
Creation features
Features
{ANY}
Implementation TODO: Evaluate An SQL Statement
    int sqlite3_step(sqlite3_stmt*);
After an SQL statement has been prepared with a call to either
sqlite3_prepare_v2() or sqlite3_prepare16_v2() or to one of the
legacy interfaces sqlite3_prepare() or sqlite3_prepare16(), then
this function must be called one or more times to evaluate the
statement.
The details of the behavior of this sqlite3_step() interface
depend on whether the statement was prepared using the newer
"v2" interface sqlite3_prepare_v2() and sqlite3_prepare16_v2()
or the older legacy interface sqlite3_prepare() and
sqlite3_prepare16(). The use of the new "v2" interface is
recommended for new applications but the legacy interface will
continue to be supported.
In the lagacy interface, the return value will be either
SQLITE_BUSY, SQLITE_DONE, SQLITE_ROW, SQLITE_ERROR, or
SQLITE_MISUSE. With the "v2" interface, any of the other result
code or extended result code might be returned as well.
SQLITE_BUSY means that the database engine was unable to acquire
the database locks it needs to do its job. If the statement is a
COMMIT or occurs outside of an explicit transaction, then you
can retry the statement. If the statement is not a COMMIT and
occurs within a explicit transaction then you should rollback
the transaction before continuing.
SQLITE_DONE means that the statement has finished executing
successfully. sqlite3_step() should not be called again on this
virtual machine without first calling sqlite3_reset() to reset
the virtual machine back to its initial state.
If the SQL statement being executed returns any data, then
SQLITE_ROW is returned each time a new row of data is ready for
processing by the caller. The values may be accessed using the
column access functions. sqlite3_step() is called again to
retrieve the next row of data.
SQLITE_ERROR means that a run-time error (such as a constraint
violation) has occurred. sqlite3_step() should not be called
again on the VM. More information may be found by calling
sqlite3_errmsg(). With the legacy interface, a more specific
error code (example: SQLITE_INTERRUPT, SQLITE_SCHEMA,
SQLITE_CORRUPT, and so forth) can be obtained by calling
sqlite3_reset() on the prepared statement. In the "v2"
interface, the more specific error code is returned directly by
sqlite3_step().
SQLITE_MISUSE means that the this routine was called
inappropriately. Perhaps it was called on a prepared statement
that has already been finalized or on one that had previously
returned SQLITE_ERROR or SQLITE_DONE. Or it could be the case
that the same database connection is being used by two or more
threads at the same moment in time.
Goofy Interface Alert: In the legacy interface, the
sqlite3_step() API always returns a generic error code,
SQLITE_ERROR, following any error other than SQLITE_BUSY and
SQLITE_MISUSE. You must call sqlite3_reset() or
sqlite3_finalize() in order to find one of the specific result
codes that better describes the error. We admit that this is a
goofy design. The problem has been fixed with the "v2"
interface. If you prepare all of your SQL statements using
either sqlite3_prepare_v2() or sqlite3_prepare16_v2() instead of
the legacy sqlite3_prepare() and sqlite3_prepare16(), then the
more specific result codes are returned directly by
sqlite3_step(). The use of the "v2" interface is recommended.
{}
Creation
{}
{ANY}
State Status reporting for the prepared statement. The actual implementation of those features are backend depending
{ANY}
Disposing
{}
  • dispose
    Action to be executed just before garbage collection reclaims an object.
parameters validity
{ANY}
{ANY}
  • reset
    Reset the compiled SQL statement back to it's initial state, ready to be re-executed.
Implementation
{}
Initialization
{}
Copying
{ANY}
Access to C features struct_size should be exported to WRAPPER, to be able to check size before copying
{}
Destroying
{WRAPPER_HANDLER}
Implementation
{WRAPPER, WRAPPER_HANDLER}
Integer and natural convertions This section is currently necessary as Liberty does not have automatic type convertions.
{WRAPPER}
Utility features
{}
Wrapper related exceptions
{}
Various exceptions codes:
{ANY}
{ANY}
Status report:
{ANY}
Basic operations:
{ANY}
  • die (code: INTEGER_32)
    Terminate execution with exit status code, without triggering an exception.
  • raise (name: STRING)
    Raise a developer exception of name name.
  • throw (a_exception: EXCEPTION)
Non-Standard Extensions:
{ANY}
{}
Pointer referencing and de-referencing
{WRAPPER}
Dealing with "char **" return types
{WRAPPER}
External calls
{}
variable-size types
{ANY}
C type definitions (typedefs)
{ANY}
  • comparison_fn_t: POINTER
    typedef comparison_fn_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
  • timer_t: POINTER
    typedef timer_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • clockid_t: INTEGER_32
    typedef clockid_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • time_t: INTEGER_64
    typedef time_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • clock_t: INTEGER_64
    typedef clock_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • uintmax_t: NATURAL_64
    typedef uintmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • intmax_t: INTEGER_64
    typedef intmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uintptr_t: NATURAL_64
    typedef uintptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • intptr_t: INTEGER_64
    typedef intptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast64_t: NATURAL_64
    typedef uint_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast32_t: NATURAL_64
    typedef uint_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast16_t: NATURAL_64
    typedef uint_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast8_t: CHARACTER
    typedef uint_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast64_t: INTEGER_64
    typedef int_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast32_t: INTEGER_64
    typedef int_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast16_t: INTEGER_64
    typedef int_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast8_t: CHARACTER
    typedef int_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least64_t: NATURAL_64
    typedef uint_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least32_t: NATURAL_32
    typedef uint_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least16_t: NATURAL_16
    typedef uint_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least8_t: CHARACTER
    typedef uint_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least64_t: INTEGER_64
    typedef int_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least32_t: INTEGER_32
    typedef int_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least16_t: INTEGER_16
    typedef int_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least8_t: CHARACTER
    typedef int_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint64_t: NATURAL_64
    typedef uint64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint32_t: NATURAL_32
    typedef uint32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint16_t: NATURAL_16
    typedef uint16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint8_t: CHARACTER
    typedef uint8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int64_t: INTEGER_64
    typedef int64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int32_t: INTEGER_32
    typedef int32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int16_t: INTEGER_16
    typedef int16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int8_t: CHARACTER
    typedef int8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • ssize_t: INTEGER_64
    typedef ssize_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • off64_t: INTEGER_64
    typedef off64_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
  • off_t: INTEGER_64
    typedef off_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
  • size_t: NATURAL_64
    typedef size_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
  • ptrdiff_t: INTEGER_64
    typedef ptrdiff_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • error_t: INTEGER_32
    typedef error_t from /usr/include/errno.h Empty by design, used for anchored declarations.
External calls function basename skipped as requested. function basename skipped as requested.
{}
External calls
{}
Result codes
{}
Type codes
{}
C type definitions (typedefs)
{ANY}
  • fts5_extension_function: POINTER
    typedef fts5_extension_function from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_rtree_dbl: REAL_64
    typedef sqlite3_rtree_dbl from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_destructor_type: POINTER
    typedef sqlite3_destructor_type from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_syscall_ptr: POINTER
    typedef sqlite3_syscall_ptr from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_callback: POINTER
    typedef sqlite3_callback from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_uint64: NATURAL_64
    typedef sqlite3_uint64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite3_int64: INTEGER_64
    typedef sqlite3_int64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite_uint64: NATURAL_64
    typedef sqlite_uint64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
  • sqlite_int64: INTEGER_64
    typedef sqlite_int64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
last_result: SQLITE_RESULT_SET
writable attribute
{ANY}
The results of the current query
execute (some_parameters: TRAVERSABLE[SQLITE_VALUE])
effective procedure
{ANY}
Execute the current query with some_parameters
execute_callback (some_parameters: TRAVERSABLE[SQLITE_VALUE], callback: ROUTINE[TUPLE 1[RESULT_ROW]])
effective procedure
{ANY}
Execute the current query with some_parameters call callback for every result_row
fill_in_results
effective procedure
{}
fetch_one_row: SQLITE_RESULT_ROW
effective function
{}
make (a_database: DATABASE, some_sql: ABSTRACT_STRING)
deferred procedure
{}
Makes a prepared command from some_sql
parameter_count: INTEGER_32
deferred function
{ANY}
The number of paramenters to be provided to execute the statement.
are_valid_parameters (some_parameters: TRAVERSABLE[VARIANT]): BOOLEAN
effective function
{ANY}
Are some_parameters valid for the current statement?
is_valid_parameter (a_parameter: VARIANT, an_index: INTEGER_32): BOOLEAN
deferred function
{ANY}
Is a_parameter placeble in statement's an_index-th parameter?
is_prepared: BOOLEAN
deferred function
{ANY}
is_stepped: BOOLEAN
deferred function
{ANY}
is_failed: BOOLEAN
deferred function
{ANY}
last_exec_success: BOOLEAN
deferred function
{ANY}
state: INTEGER_32
writable attribute
{ANY}
dispose
effective procedure
{}
Action to be executed just before garbage collection reclaims an object.
bind_parameter (a_parameter: SQLITE_VALUE, an_index: INTEGER_32)
effective procedure
{ANY}
Bind a_parameter to an_index placeholder in the statement.
clear_bindings
effective procedure
{ANY}
Unsets all host parameters to Void.
reset
effective procedure
{ANY}
Reset the compiled SQL statement back to it's initial state, ready to be re-executed.
res_code: INTEGER_32
writable attribute
{}
sqlite_db: SQLITE_DATABASE
writable attribute
{}
from_external_copy (other: POINTER)
effective procedure
{}
allocate
effective procedure
{}
Allocate an uninitialized structure.
copy (other: SQLITE_PREPARED_QUERY)
effective procedure
{ANY}
is_equal (another: SQLITE_PREPARED_QUERY): BOOLEAN
effective function
{ANY}
struct_size: NATURAL_64
deferred function
{}
free_handle
effective procedure
release the external memory
from_external_pointer (a_ptr: POINTER)
effective procedure
set_handle (a_ptr: POINTER)
effective procedure
Set a non-null handle.
handle: POINTER
writable attribute
Pointer to the underlying C "thing" (i.e. a struct)
reference: POINTER
effective function
The address of handle.
integer_to_size_t (an_integer: INTEGER_32): NATURAL_64
Comodity feature to cast an integer into an actual size_t
null_or (a_wrapper: WRAPPER): POINTER
effective function
{}
The handle of a_wrapper, or the default_pointer if a_wrapper is Void
null_or_string (a_string: ABSTRACT_STRING): POINTER
effective function
{}
A pointer to a memory area containing the content of a_string or default_pointer if a_string is Void.
null_or_array (a_collection: WRAPPER_COLLECTION[WRAPPER]): POINTER
effective function
{}
A pointer to the contenct of a_collection or NULL (default_pointer) if a_collection is Void
collection_to_c_array (a_collection: COLLECTION[WRAPPER]): FAST_ARRAY[POINTER]
effective function
{}
An array containing the pointers to the objects wrapped by a_collection wrappers.
pointer_to_unwrapped_deferred_object: STRING
is "A C function returned a pointer to an unwrapped object which is wrapped by a deferred class. It is not possible to create a correct wrapper."
constant attribute
{}
retrieved_object_mismatch: STRING
is "Retrieved_object_mismatch: the Eiffel wrapper associated with a pointer is not an actual wrapper for the object referred by that pointer "
constant attribute
{}
copying_an_uncopyable: STRING
is "Trying to copy an uncopyable wrapper: such objects are usually shortly lived"
constant attribute
{}
Check_instruction: INTEGER_32
is 1
constant attribute
{ANY}
Exception code for violated check.
Class_invariant: INTEGER_32
is 2
constant attribute
{ANY}
Exception code for violated class invariant.
Developer_exception: INTEGER_32
is 3
constant attribute
{ANY}
Exception code for developer exception.
Incorrect_inspect_value: INTEGER_32
is 4
constant attribute
{ANY}
Exception code for inspect statement.
Loop_invariant: INTEGER_32
is 5
constant attribute
{ANY}
Exception code for violated loop invariant
Loop_variant: INTEGER_32
is 6
constant attribute
{ANY}
Exception code for non-decreased loop variant
No_more_memory: INTEGER_32
is 7
constant attribute
{ANY}
Exception code for failed memory allocation
Postcondition: INTEGER_32
is 8
constant attribute
{ANY}
Exception code for violated postcondition.
Precondition: INTEGER_32
is 9
constant attribute
{ANY}
Exception code for violated precondition.
Routine_failure: INTEGER_32
is 10
constant attribute
{ANY}
Exception code for failed routine.
Os_signal: INTEGER_32
is 11
constant attribute
{ANY}
Exception code for a signal received from the OS.
Void_attached_to_expanded: INTEGER_32
is 12
constant attribute
{ANY}
Exception code for attachment of Void value to expanded entity.
Void_call_target: INTEGER_32
is 13
constant attribute
{ANY}
Exception code for feature applied to Void reference
System_level_type_error: INTEGER_32
is 14
constant attribute
{ANY}
Exception code for the system-level type error (this kind of error mostly arise with covariant redefinition).
exception_name: STRING
effective function
{ANY}
name_of_exception (a_exception: INTEGER_32): STRING
effective function
{ANY}
developer_exception: EXCEPTION
effective function
{ANY}
The last developer-thrown exception.
developer_exception_name: STRING
effective function
{ANY}
Name of last developer-raised exception.
is_developer_exception: BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception?
is_developer_named_exception: BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception?
is_developer_exception_of_name (name: STRING): BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception of name name?
assertion_violation: BOOLEAN
effective function
{ANY}
Is last exception originally due to a violated assertion or non-decreasing variant?
exception: INTEGER_32
{ANY}
Code of last exception that occurred.
is_signal: BOOLEAN
effective function
{ANY}
Is last exception originally due to an external event (operating system signal) ?
die (code: INTEGER_32)
effective procedure
{ANY}
Terminate execution with exit status code, without triggering an exception.
raise (name: STRING)
effective procedure
{ANY}
Raise a developer exception of name name.
throw (a_exception: EXCEPTION)
effective procedure
{ANY}
signal_number: INTEGER_32
{ANY}
Signal Number received from OS.
named_exception: NAMED_EXCEPTION
once function
{}
developer_exception_memory: REFERENCE[EXCEPTION]
once function
{}
raise_exception (code: INTEGER_32)
{}
address_of (a_pointer: POINTER): POINTER
content_of (a_pointer: POINTER): POINTER
The pointer referenced by a_pointer which has to be a pointer to a pointer (i.e.: void **).
strings_array_from (a_pointer: POINTER): FAST_ARRAY[FIXED_STRING]
effective function
Build a FAST_ARRAY of STRINGs from a_pointer which must be of a NULL-terminated array of C strings, that is a "char**" String contents and array itself are copied.
sized_strings_array_from (a_pointer: POINTER, a_size: INTEGER_32): FAST_ARRAY[FIXED_STRING]
effective function
Build a FAST_ARRAY of STRINGs from a_pointer which must be of a array of C strings of a_size elements.
a64l (a_s: POINTER): INTEGER_64
{}
function a64l (in /usr/include/stdlib.h) a64l
abort
{}
function abort (in /usr/include/stdlib.h) abort
abs (a_x: INTEGER_32): INTEGER_32
{}
function abs (in /usr/include/stdlib.h) abs
aligned_alloc (an_alignment: NATURAL_64, a_size: NATURAL_64): POINTER
{}
function aligned_alloc (in /usr/include/stdlib.h) aligned_alloc
at_quick_exit (a_func: POINTER): INTEGER_32
{}
function at_quick_exit (in /usr/include/stdlib.h) at_quick_exit
atexit (a_func: POINTER): INTEGER_32
{}
function atexit (in /usr/include/stdlib.h) atexit
atof (a_nptr: POINTER): REAL_64
{}
function atof (in /usr/include/stdlib.h) atof
atoi (a_nptr: POINTER): INTEGER_32
{}
function atoi (in /usr/include/stdlib.h) atoi
atol (a_nptr: POINTER): INTEGER_64
{}
function atol (in /usr/include/stdlib.h) atol
atoll (a_nptr: POINTER): INTEGER_64
{}
function atoll (in /usr/include/stdlib.h) atoll
bsearch (a_key: POINTER, a_base: POINTER, a_nmemb: NATURAL_64, a_size: NATURAL_64, a_compar: POINTER): POINTER
{}
function bsearch (in /usr/include/stdlib.h) bsearch
calloc (a_nmemb: NATURAL_64, a_size: NATURAL_64): POINTER
{}
function calloc (in /usr/include/stdlib.h) calloc
canonicalize_file_name (a_name: POINTER): POINTER
{}
function canonicalize_file_name (in /usr/include/stdlib.h) canonicalize_file_name
cfree (a_ptr: POINTER)
{}
function cfree (in /usr/include/stdlib.h) cfree
clearenv: INTEGER_32
{}
function clearenv (in /usr/include/stdlib.h) clearenv
drand48: REAL_64
{}
function drand48 (in /usr/include/stdlib.h) drand48
drand48_r (a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function drand48_r (in /usr/include/stdlib.h) drand48_r
ecvt (a_value: REAL_64, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER): POINTER
{}
function ecvt (in /usr/include/stdlib.h) ecvt
ecvt_r (a_value: REAL_64, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER, a_buf: POINTER, a_len: NATURAL_64): INTEGER_32
{}
function ecvt_r (in /usr/include/stdlib.h) ecvt_r
erand48 (a_xsubi: POINTER): REAL_64
{}
function erand48 (in /usr/include/stdlib.h) erand48
erand48_r (a_xsubi: POINTER, a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function erand48_r (in /usr/include/stdlib.h) erand48_r
exit (a_status: INTEGER_32)
{}
function exit (in /usr/include/stdlib.h) exit
fcvt (a_value: REAL_64, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER): POINTER
{}
function fcvt (in /usr/include/stdlib.h) fcvt
fcvt_r (a_value: REAL_64, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER, a_buf: POINTER, a_len: NATURAL_64): INTEGER_32
{}
function fcvt_r (in /usr/include/stdlib.h) fcvt_r
free (a_ptr: POINTER)
{}
function free (in /usr/include/stdlib.h) free
gcvt (a_value: REAL_64, a_ndigit: INTEGER_32, a_buf: POINTER): POINTER
{}
function gcvt (in /usr/include/stdlib.h) gcvt
getenv (a_name: POINTER): POINTER
{}
function getenv (in /usr/include/stdlib.h) getenv
getloadavg (a_loadavg: POINTER, a_nelem: INTEGER_32): INTEGER_32
{}
function getloadavg (in /usr/include/stdlib.h) getloadavg
getpt: INTEGER_32
{}
function getpt (in /usr/include/stdlib.h) getpt
getsubopt (an_optionp: POINTER, a_tokens: POINTER, a_valuep: POINTER): INTEGER_32
{}
function getsubopt (in /usr/include/stdlib.h) getsubopt
grantpt (a_fd: INTEGER_32): INTEGER_32
{}
function grantpt (in /usr/include/stdlib.h) grantpt
initstate (a_seed: NATURAL_32, a_statebuf: POINTER, a_statelen: NATURAL_64): POINTER
{}
function initstate (in /usr/include/stdlib.h) initstate
initstate_r (a_seed: NATURAL_32, a_statebuf: POINTER, a_statelen: NATURAL_64, a_buf: POINTER): INTEGER_32
{}
function initstate_r (in /usr/include/stdlib.h) initstate_r
jrand48 (a_xsubi: POINTER): INTEGER_64
{}
function jrand48 (in /usr/include/stdlib.h) jrand48
jrand48_r (a_xsubi: POINTER, a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function jrand48_r (in /usr/include/stdlib.h) jrand48_r
l64a (a_n: INTEGER_64): POINTER
{}
function l64a (in /usr/include/stdlib.h) l64a
labs (a_x: INTEGER_64): INTEGER_64
{}
function labs (in /usr/include/stdlib.h) labs
lcong48 (a_param: POINTER)
{}
function lcong48 (in /usr/include/stdlib.h) lcong48
lcong48_r (a_param: POINTER, a_buffer: POINTER): INTEGER_32
{}
function lcong48_r (in /usr/include/stdlib.h) lcong48_r
llabs (a_x: INTEGER_64): INTEGER_64
{}
function llabs (in /usr/include/stdlib.h) llabs
lrand48: INTEGER_64
{}
function lrand48 (in /usr/include/stdlib.h) lrand48
lrand48_r (a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function lrand48_r (in /usr/include/stdlib.h) lrand48_r
malloc (a_size: NATURAL_64): POINTER
{}
function malloc (in /usr/include/stdlib.h) malloc
mblen (a_s: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function mblen (in /usr/include/stdlib.h) mblen
mbstowcs (a_pwcs: POINTER, a_s: POINTER, a_n: NATURAL_64): NATURAL_64
{}
function mbstowcs (in /usr/include/stdlib.h) mbstowcs
mbtowc (a_pwc: POINTER, a_s: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function mbtowc (in /usr/include/stdlib.h) mbtowc
memcpy (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function memcpy (in /usr/include/stdlib.h) memcpy
mkdtemp (a_template: POINTER): POINTER
{}
function mkdtemp (in /usr/include/stdlib.h) mkdtemp
mkostemp (a_template: POINTER, a_flags: INTEGER_32): INTEGER_32
{}
function mkostemp (in /usr/include/stdlib.h) mkostemp
mkostemp64 (a_template: POINTER, a_flags: INTEGER_32): INTEGER_32
{}
function mkostemp64 (in /usr/include/stdlib.h) mkostemp64
mkostemps (a_template: POINTER, a_suffixlen: INTEGER_32, a_flags: INTEGER_32): INTEGER_32
{}
function mkostemps (in /usr/include/stdlib.h) mkostemps
mkostemps64 (a_template: POINTER, a_suffixlen: INTEGER_32, a_flags: INTEGER_32): INTEGER_32
{}
function mkostemps64 (in /usr/include/stdlib.h) mkostemps64
mkstemp (a_template: POINTER): INTEGER_32
{}
function mkstemp (in /usr/include/stdlib.h) mkstemp
mkstemp64 (a_template: POINTER): INTEGER_32
{}
function mkstemp64 (in /usr/include/stdlib.h) mkstemp64
mkstemps (a_template: POINTER, a_suffixlen: INTEGER_32): INTEGER_32
{}
function mkstemps (in /usr/include/stdlib.h) mkstemps
mkstemps64 (a_template: POINTER, a_suffixlen: INTEGER_32): INTEGER_32
{}
function mkstemps64 (in /usr/include/stdlib.h) mkstemps64
mktemp (a_template: POINTER): POINTER
{}
function mktemp (in /usr/include/stdlib.h) mktemp
mrand48: INTEGER_64
{}
function mrand48 (in /usr/include/stdlib.h) mrand48
mrand48_r (a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function mrand48_r (in /usr/include/stdlib.h) mrand48_r
nrand48 (a_xsubi: POINTER): INTEGER_64
{}
function nrand48 (in /usr/include/stdlib.h) nrand48
nrand48_r (a_xsubi: POINTER, a_buffer: POINTER, a_result: POINTER): INTEGER_32
{}
function nrand48_r (in /usr/include/stdlib.h) nrand48_r
on_exit (a_func: POINTER, an_arg: POINTER): INTEGER_32
{}
function on_exit (in /usr/include/stdlib.h) on_exit
posix_memalign (a_memptr: POINTER, an_alignment: NATURAL_64, a_size: NATURAL_64): INTEGER_32
{}
function posix_memalign (in /usr/include/stdlib.h) posix_memalign
posix_openpt (an_oflag: INTEGER_32): INTEGER_32
{}
function posix_openpt (in /usr/include/stdlib.h) posix_openpt
ptsname (a_fd: INTEGER_32): POINTER
{}
function ptsname (in /usr/include/stdlib.h) ptsname
ptsname_r (a_fd: INTEGER_32, a_buf: POINTER, a_buflen: NATURAL_64): INTEGER_32
{}
function ptsname_r (in /usr/include/stdlib.h) ptsname_r
putenv (a_string: POINTER): INTEGER_32
{}
function putenv (in /usr/include/stdlib.h) putenv
qecvt (a_value: REAL_EXTENDED, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER): POINTER
{}
function qecvt (in /usr/include/stdlib.h) qecvt
qecvt_r (a_value: REAL_EXTENDED, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER, a_buf: POINTER, a_len: NATURAL_64): INTEGER_32
{}
function qecvt_r (in /usr/include/stdlib.h) qecvt_r
qfcvt (a_value: REAL_EXTENDED, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER): POINTER
{}
function qfcvt (in /usr/include/stdlib.h) qfcvt
qfcvt_r (a_value: REAL_EXTENDED, a_ndigit: INTEGER_32, a_decpt: POINTER, a_sign: POINTER, a_buf: POINTER, a_len: NATURAL_64): INTEGER_32
{}
function qfcvt_r (in /usr/include/stdlib.h) qfcvt_r
qgcvt (a_value: REAL_EXTENDED, a_ndigit: INTEGER_32, a_buf: POINTER): POINTER
{}
function qgcvt (in /usr/include/stdlib.h) qgcvt
qsort (a_base: POINTER, a_nmemb: NATURAL_64, a_size: NATURAL_64, a_compar: POINTER)
{}
function qsort (in /usr/include/stdlib.h) qsort
qsort_r (a_base: POINTER, a_nmemb: NATURAL_64, a_size: NATURAL_64, a_compar: POINTER, an_arg: POINTER)
{}
function qsort_r (in /usr/include/stdlib.h) qsort_r
quick_exit (a_status: INTEGER_32)
{}
function quick_exit (in /usr/include/stdlib.h) quick_exit
rand: INTEGER_32
{}
function rand (in /usr/include/stdlib.h) rand
rand_r (a_seed: POINTER): INTEGER_32
{}
function rand_r (in /usr/include/stdlib.h) rand_r
random: INTEGER_64
{}
function random (in /usr/include/stdlib.h) random
random_r (a_buf: POINTER, a_result: POINTER): INTEGER_32
{}
function random_r (in /usr/include/stdlib.h) random_r
realloc (a_ptr: POINTER, a_size: NATURAL_64): POINTER
{}
function realloc (in /usr/include/stdlib.h) realloc
realpath (a_name: POINTER, a_resolved: POINTER): POINTER
{}
function realpath (in /usr/include/stdlib.h) realpath
rpmatch (a_response: POINTER): INTEGER_32
{}
function rpmatch (in /usr/include/stdlib.h) rpmatch
secure_getenv (a_name: POINTER): POINTER
{}
function secure_getenv (in /usr/include/stdlib.h) secure_getenv
seed48 (a_seed16v: POINTER): POINTER
{}
function seed48 (in /usr/include/stdlib.h) seed48
seed48_r (a_seed16v: POINTER, a_buffer: POINTER): INTEGER_32
{}
function seed48_r (in /usr/include/stdlib.h) seed48_r
setenv (a_name: POINTER, a_value: POINTER, a_replace: INTEGER_32): INTEGER_32
{}
function setenv (in /usr/include/stdlib.h) setenv
setkey (a_key: POINTER)
{}
function setkey (in /usr/include/stdlib.h) setkey
setstate (a_statebuf: POINTER): POINTER
{}
function setstate (in /usr/include/stdlib.h) setstate
setstate_r (a_statebuf: POINTER, a_buf: POINTER): INTEGER_32
{}
function setstate_r (in /usr/include/stdlib.h) setstate_r
srand (a_seed: NATURAL_32)
{}
function srand (in /usr/include/stdlib.h) srand
srand48 (a_seedval: INTEGER_64)
{}
function srand48 (in /usr/include/stdlib.h) srand48
srand48_r (a_seedval: INTEGER_64, a_buffer: POINTER): INTEGER_32
{}
function srand48_r (in /usr/include/stdlib.h) srand48_r
srandom (a_seed: NATURAL_32)
{}
function srandom (in /usr/include/stdlib.h) srandom
srandom_r (a_seed: NATURAL_32, a_buf: POINTER): INTEGER_32
{}
function srandom_r (in /usr/include/stdlib.h) srandom_r
strtod (a_nptr: POINTER, an_endptr: POINTER): REAL_64
{}
function strtod (in /usr/include/stdlib.h) strtod
strtod_l (a_nptr: POINTER, an_endptr: POINTER, a_loc: POINTER): REAL_64
{}
function strtod_l (in /usr/include/stdlib.h) strtod_l
strtof (a_nptr: POINTER, an_endptr: POINTER): REAL_32
{}
function strtof (in /usr/include/stdlib.h) strtof
strtof_l (a_nptr: POINTER, an_endptr: POINTER, a_loc: POINTER): REAL_32
{}
function strtof_l (in /usr/include/stdlib.h) strtof_l
strtol (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): INTEGER_64
{}
function strtol (in /usr/include/stdlib.h) strtol
strtol_l (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32, a_loc: POINTER): INTEGER_64
{}
function strtol_l (in /usr/include/stdlib.h) strtol_l
strtold (a_nptr: POINTER, an_endptr: POINTER): REAL_EXTENDED
{}
function strtold (in /usr/include/stdlib.h) strtold
strtold_l (a_nptr: POINTER, an_endptr: POINTER, a_loc: POINTER): REAL_EXTENDED
{}
function strtold_l (in /usr/include/stdlib.h) strtold_l
strtoll (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): INTEGER_64
{}
function strtoll (in /usr/include/stdlib.h) strtoll
strtoll_l (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32, a_loc: POINTER): INTEGER_64
{}
function strtoll_l (in /usr/include/stdlib.h) strtoll_l
strtoq (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): INTEGER_64
{}
function strtoq (in /usr/include/stdlib.h) strtoq
strtoul (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): NATURAL_64
{}
function strtoul (in /usr/include/stdlib.h) strtoul
strtoul_l (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32, a_loc: POINTER): NATURAL_64
{}
function strtoul_l (in /usr/include/stdlib.h) strtoul_l
strtoull (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): NATURAL_64
{}
function strtoull (in /usr/include/stdlib.h) strtoull
strtoull_l (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32, a_loc: POINTER): NATURAL_64
{}
function strtoull_l (in /usr/include/stdlib.h) strtoull_l
strtouq (a_nptr: POINTER, an_endptr: POINTER, a_base: INTEGER_32): NATURAL_64
{}
function strtouq (in /usr/include/stdlib.h) strtouq
system (a_command: POINTER): INTEGER_32
{}
function system (in /usr/include/stdlib.h) system
unlockpt (a_fd: INTEGER_32): INTEGER_32
{}
function unlockpt (in /usr/include/stdlib.h) unlockpt
unsetenv (a_name: POINTER): INTEGER_32
{}
function unsetenv (in /usr/include/stdlib.h) unsetenv
valloc (a_size: NATURAL_64): POINTER
{}
function valloc (in /usr/include/stdlib.h) valloc
wcstombs (a_s: POINTER, a_pwcs: POINTER, a_n: NATURAL_64): NATURAL_64
{}
function wcstombs (in /usr/include/stdlib.h) wcstombs
long: INTEGER_64
effective function
{ANY}
a query with the same type of c 'long int'.
long_unsigned: NATURAL_64
effective function
{ANY}
a query with the same type of c 'long unsigned int'.
comparison_fn_t: POINTER
effective function
{ANY}
typedef comparison_fn_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
timer_t: POINTER
effective function
{ANY}
typedef timer_t from /usr/include/time.h Empty by design, used for anchored declarations.
clockid_t: INTEGER_32
effective function
{ANY}
typedef clockid_t from /usr/include/time.h Empty by design, used for anchored declarations.
time_t: INTEGER_64
effective function
{ANY}
typedef time_t from /usr/include/time.h Empty by design, used for anchored declarations.
clock_t: INTEGER_64
effective function
{ANY}
typedef clock_t from /usr/include/time.h Empty by design, used for anchored declarations.
uintmax_t: NATURAL_64
effective function
{ANY}
typedef uintmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
intmax_t: INTEGER_64
effective function
{ANY}
typedef intmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uintptr_t: NATURAL_64
effective function
{ANY}
typedef uintptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
intptr_t: INTEGER_64
effective function
{ANY}
typedef intptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_fast64_t: NATURAL_64
effective function
{ANY}
typedef uint_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_fast32_t: NATURAL_64
effective function
{ANY}
typedef uint_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_fast16_t: NATURAL_64
effective function
{ANY}
typedef uint_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_fast8_t: CHARACTER
effective function
{ANY}
typedef uint_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_fast64_t: INTEGER_64
effective function
{ANY}
typedef int_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_fast32_t: INTEGER_64
effective function
{ANY}
typedef int_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_fast16_t: INTEGER_64
effective function
{ANY}
typedef int_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_fast8_t: CHARACTER
effective function
{ANY}
typedef int_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_least64_t: NATURAL_64
effective function
{ANY}
typedef uint_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_least32_t: NATURAL_32
effective function
{ANY}
typedef uint_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_least16_t: NATURAL_16
effective function
{ANY}
typedef uint_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint_least8_t: CHARACTER
effective function
{ANY}
typedef uint_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_least64_t: INTEGER_64
effective function
{ANY}
typedef int_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_least32_t: INTEGER_32
effective function
{ANY}
typedef int_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_least16_t: INTEGER_16
effective function
{ANY}
typedef int_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int_least8_t: CHARACTER
effective function
{ANY}
typedef int_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint64_t: NATURAL_64
effective function
{ANY}
typedef uint64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint32_t: NATURAL_32
effective function
{ANY}
typedef uint32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint16_t: NATURAL_16
effective function
{ANY}
typedef uint16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
uint8_t: CHARACTER
effective function
{ANY}
typedef uint8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int64_t: INTEGER_64
effective function
{ANY}
typedef int64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int32_t: INTEGER_32
effective function
{ANY}
typedef int32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int16_t: INTEGER_16
effective function
{ANY}
typedef int16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
int8_t: CHARACTER
effective function
{ANY}
typedef int8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ssize_t: INTEGER_64
effective function
{ANY}
typedef ssize_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
off64_t: INTEGER_64
effective function
{ANY}
typedef off64_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
off_t: INTEGER_64
effective function
{ANY}
typedef off_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
size_t: NATURAL_64
effective function
{ANY}
typedef size_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
ptrdiff_t: INTEGER_64
effective function
{ANY}
typedef ptrdiff_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
error_t: INTEGER_32
effective function
{ANY}
typedef error_t from /usr/include/errno.h Empty by design, used for anchored declarations.
bcmp (a_s1: POINTER, a_s2: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function bcmp (in /usr/include/string.h) bcmp
bcopy (a_src: POINTER, a_dest: POINTER, a_n: NATURAL_64)
{}
function bcopy (in /usr/include/string.h) bcopy
bzero (a_s: POINTER, a_n: NATURAL_64)
{}
function bzero (in /usr/include/string.h) bzero
ffs (an_i: INTEGER_32): INTEGER_32
{}
function ffs (in /usr/include/string.h) ffs
ffsl (a_l: INTEGER_64): INTEGER_32
{}
function ffsl (in /usr/include/string.h) ffsl
ffsll (a_ll: INTEGER_64): INTEGER_32
{}
function ffsll (in /usr/include/string.h) ffsll
memccpy (a_dest: POINTER, a_src: POINTER, a_c: INTEGER_32, a_n: NATURAL_64): POINTER
{}
function memccpy (in /usr/include/string.h) memccpy
memcmp (a_s1: POINTER, a_s2: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function memcmp (in /usr/include/string.h) memcmp
memfrob (a_s: POINTER, a_n: NATURAL_64): POINTER
{}
function memfrob (in /usr/include/string.h) memfrob
memmem (a_haystack: POINTER, a_haystacklen: NATURAL_64, a_needle: POINTER, a_needlelen: NATURAL_64): POINTER
{}
function memmem (in /usr/include/string.h) memmem
memmove (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function memmove (in /usr/include/string.h) memmove
mempcpy (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function mempcpy (in /usr/include/string.h) mempcpy
memset (a_s: POINTER, a_c: INTEGER_32, a_n: NATURAL_64): POINTER
{}
function memset (in /usr/include/string.h) memset
stpcpy (a_dest: POINTER, a_src: POINTER): POINTER
{}
function stpcpy (in /usr/include/string.h) stpcpy
stpncpy (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function stpncpy (in /usr/include/string.h) stpncpy
strcasecmp (a_s1: POINTER, a_s2: POINTER): INTEGER_32
{}
function strcasecmp (in /usr/include/string.h) strcasecmp
strcasecmp_l (a_s1: POINTER, a_s2: POINTER, a_loc: POINTER): INTEGER_32
{}
function strcasecmp_l (in /usr/include/string.h) strcasecmp_l
strcat (a_dest: POINTER, a_src: POINTER): POINTER
{}
function strcat (in /usr/include/string.h) strcat
strcmp (a_s1: POINTER, a_s2: POINTER): INTEGER_32
{}
function strcmp (in /usr/include/string.h) strcmp
strcoll (a_s1: POINTER, a_s2: POINTER): INTEGER_32
{}
function strcoll (in /usr/include/string.h) strcoll
strcoll_l (a_s1: POINTER, a_s2: POINTER, a_l: POINTER): INTEGER_32
{}
function strcoll_l (in /usr/include/string.h) strcoll_l
strcpy (a_dest: POINTER, a_src: POINTER): POINTER
{}
function strcpy (in /usr/include/string.h) strcpy
strcspn (a_s: POINTER, a_reject: POINTER): NATURAL_64
{}
function strcspn (in /usr/include/string.h) strcspn
strdup (a_s: POINTER): POINTER
{}
function strdup (in /usr/include/string.h) strdup
strerror (an_errnum: INTEGER_32): POINTER
{}
function strerror (in /usr/include/string.h) strerror
strerror_l (an_errnum: INTEGER_32, a_l: POINTER): POINTER
{}
function strerror_l (in /usr/include/string.h) strerror_l
strerror_r (an_errnum: INTEGER_32, a_buf: POINTER, a_buflen: NATURAL_64): POINTER
{}
function strerror_r (in /usr/include/string.h) strerror_r
strfry (a_string: POINTER): POINTER
{}
function strfry (in /usr/include/string.h) strfry
strlen (a_s: POINTER): NATURAL_64
{}
function strlen (in /usr/include/string.h) strlen
strncasecmp (a_s1: POINTER, a_s2: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function strncasecmp (in /usr/include/string.h) strncasecmp
strncasecmp_l (a_s1: POINTER, a_s2: POINTER, a_n: NATURAL_64, a_loc: POINTER): INTEGER_32
{}
function strncasecmp_l (in /usr/include/string.h) strncasecmp_l
strncat (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function strncat (in /usr/include/string.h) strncat
strncmp (a_s1: POINTER, a_s2: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function strncmp (in /usr/include/string.h) strncmp
strncpy (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): POINTER
{}
function strncpy (in /usr/include/string.h) strncpy
strndup (a_string: POINTER, a_n: NATURAL_64): POINTER
{}
function strndup (in /usr/include/string.h) strndup
strnlen (a_string: POINTER, a_maxlen: NATURAL_64): NATURAL_64
{}
function strnlen (in /usr/include/string.h) strnlen
strsep (a_stringp: POINTER, a_delim: POINTER): POINTER
{}
function strsep (in /usr/include/string.h) strsep
strsignal (a_sig: INTEGER_32): POINTER
{}
function strsignal (in /usr/include/string.h) strsignal
strspn (a_s: POINTER, an_accept: POINTER): NATURAL_64
{}
function strspn (in /usr/include/string.h) strspn
strtok (a_s: POINTER, a_delim: POINTER): POINTER
{}
function strtok (in /usr/include/string.h) strtok
strtok_r (a_s: POINTER, a_delim: POINTER, a_save_ptr: POINTER): POINTER
{}
function strtok_r (in /usr/include/string.h) strtok_r
strverscmp (a_s1: POINTER, a_s2: POINTER): INTEGER_32
{}
function strverscmp (in /usr/include/string.h) strverscmp
strxfrm (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64): NATURAL_64
{}
function strxfrm (in /usr/include/string.h) strxfrm
strxfrm_l (a_dest: POINTER, a_src: POINTER, a_n: NATURAL_64, a_l: POINTER): NATURAL_64
{}
function strxfrm_l (in /usr/include/string.h) strxfrm_l
sqlite3_aggregate_context (an_argument_l517_c7: POINTER, a_n_bytes: INTEGER_32): POINTER
{}
function sqlite3_aggregate_context (in /usr/include/sqlite3.h) sqlite3_aggregate_context
sqlite3_auto_extension (a_x_entry_point: POINTER): INTEGER_32
{}
function sqlite3_auto_extension (in /usr/include/sqlite3.h) sqlite3_auto_extension
sqlite3_backup_finish (a_p: POINTER): INTEGER_32
{}
function sqlite3_backup_finish (in /usr/include/sqlite3.h) sqlite3_backup_finish
sqlite3_backup_init (a_p_dest: POINTER, a_z_dest_name: POINTER, a_p_source: POINTER, a_z_source_name: POINTER): POINTER
{}
function sqlite3_backup_init (in /usr/include/sqlite3.h) sqlite3_backup_init
sqlite3_backup_pagecount (a_p: POINTER): INTEGER_32
{}
function sqlite3_backup_pagecount (in /usr/include/sqlite3.h) sqlite3_backup_pagecount
sqlite3_backup_remaining (a_p: POINTER): INTEGER_32
{}
function sqlite3_backup_remaining (in /usr/include/sqlite3.h) sqlite3_backup_remaining
sqlite3_backup_step (a_p: POINTER, a_n_page: INTEGER_32): INTEGER_32
{}
function sqlite3_backup_step (in /usr/include/sqlite3.h) sqlite3_backup_step
sqlite3_bind_blob (an_argument_l262_c7: POINTER, an_argument_l263_c7: INTEGER_32, an_argument_l264_c7: POINTER, a_n: INTEGER_32, an_argument_l266_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_blob (in /usr/include/sqlite3.h) sqlite3_bind_blob
sqlite3_bind_blob64 (an_argument_l269_c7: POINTER, an_argument_l270_c7: INTEGER_32, an_argument_l271_c7: POINTER, an_argument_l272_c7: NATURAL_64, an_argument_l273_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_blob64 (in /usr/include/sqlite3.h) sqlite3_bind_blob64
sqlite3_bind_double (an_argument_l276_c7: POINTER, an_argument_l277_c7: INTEGER_32, an_argument_l278_c7: REAL_64): INTEGER_32
{}
function sqlite3_bind_double (in /usr/include/sqlite3.h) sqlite3_bind_double
sqlite3_bind_int (an_argument_l281_c7: POINTER, an_argument_l282_c7: INTEGER_32, an_argument_l283_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_bind_int (in /usr/include/sqlite3.h) sqlite3_bind_int
sqlite3_bind_int64 (an_argument_l286_c7: POINTER, an_argument_l287_c7: INTEGER_32, an_argument_l288_c7: INTEGER_64): INTEGER_32
{}
function sqlite3_bind_int64 (in /usr/include/sqlite3.h) sqlite3_bind_int64
sqlite3_bind_null (an_argument_l291_c7: POINTER, an_argument_l292_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_bind_null (in /usr/include/sqlite3.h) sqlite3_bind_null
sqlite3_bind_parameter_count (an_argument_l332_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_parameter_count (in /usr/include/sqlite3.h) sqlite3_bind_parameter_count
sqlite3_bind_parameter_index (an_argument_l339_c7: POINTER, a_z_name: POINTER): INTEGER_32
{}
function sqlite3_bind_parameter_index (in /usr/include/sqlite3.h) sqlite3_bind_parameter_index
sqlite3_bind_parameter_name (an_argument_l335_c7: POINTER, an_argument_l336_c7: INTEGER_32): POINTER
{}
function sqlite3_bind_parameter_name (in /usr/include/sqlite3.h) sqlite3_bind_parameter_name
sqlite3_bind_text (an_argument_l295_c7: POINTER, an_argument_l296_c7: INTEGER_32, an_argument_l297_c7: POINTER, an_argument_l298_c7: INTEGER_32, an_argument_l299_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_text (in /usr/include/sqlite3.h) sqlite3_bind_text
sqlite3_bind_text16 (an_argument_l302_c7: POINTER, an_argument_l303_c7: INTEGER_32, an_argument_l304_c7: POINTER, an_argument_l305_c7: INTEGER_32, an_argument_l306_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_text16 (in /usr/include/sqlite3.h) sqlite3_bind_text16
sqlite3_bind_text64 (an_argument_l309_c7: POINTER, an_argument_l310_c7: INTEGER_32, an_argument_l311_c7: POINTER, an_argument_l312_c7: NATURAL_64, an_argument_l313_c7: POINTER, an_encoding: CHARACTER): INTEGER_32
{}
function sqlite3_bind_text64 (in /usr/include/sqlite3.h) sqlite3_bind_text64
sqlite3_bind_value (an_argument_l317_c7: POINTER, an_argument_l318_c7: INTEGER_32, an_argument_l319_c7: POINTER): INTEGER_32
{}
function sqlite3_bind_value (in /usr/include/sqlite3.h) sqlite3_bind_value
sqlite3_bind_zeroblob (an_argument_l322_c7: POINTER, an_argument_l323_c7: INTEGER_32, a_n: INTEGER_32): INTEGER_32
{}
function sqlite3_bind_zeroblob (in /usr/include/sqlite3.h) sqlite3_bind_zeroblob
sqlite3_bind_zeroblob64 (an_argument_l327_c7: POINTER, an_argument_l328_c7: INTEGER_32, an_argument_l329_c7: NATURAL_64): INTEGER_32
{}
function sqlite3_bind_zeroblob64 (in /usr/include/sqlite3.h) sqlite3_bind_zeroblob64
sqlite3_blob_bytes (an_argument_l792_c7: POINTER): INTEGER_32
{}
function sqlite3_blob_bytes (in /usr/include/sqlite3.h) sqlite3_blob_bytes
sqlite3_blob_close (an_argument_l789_c7: POINTER): INTEGER_32
{}
function sqlite3_blob_close (in /usr/include/sqlite3.h) sqlite3_blob_close
sqlite3_blob_open (an_argument_l776_c7: POINTER, a_z_db: POINTER, a_z_table: POINTER, a_z_column: POINTER, an_i_row: INTEGER_64, a_flags: INTEGER_32, a_pp_blob: POINTER): INTEGER_32
{}
function sqlite3_blob_open (in /usr/include/sqlite3.h) sqlite3_blob_open
sqlite3_blob_read (an_argument_l795_c7: POINTER, a_z: POINTER, a_n: INTEGER_32, an_i_offset: INTEGER_32): INTEGER_32
{}
function sqlite3_blob_read (in /usr/include/sqlite3.h) sqlite3_blob_read
sqlite3_blob_reopen (an_argument_l785_c7: POINTER, an_argument_l786_c7: INTEGER_64): INTEGER_32
{}
function sqlite3_blob_reopen (in /usr/include/sqlite3.h) sqlite3_blob_reopen
sqlite3_blob_write (an_argument_l801_c7: POINTER, a_z: POINTER, a_n: INTEGER_32, an_i_offset: INTEGER_32): INTEGER_32
{}
function sqlite3_blob_write (in /usr/include/sqlite3.h) sqlite3_blob_write
sqlite3_busy_handler (an_argument_l85_c7: POINTER, an_argument_l86_c7: POINTER, an_argument_l87_c7: POINTER): INTEGER_32
{}
function sqlite3_busy_handler (in /usr/include/sqlite3.h) sqlite3_busy_handler
sqlite3_busy_timeout (an_argument_l90_c7: POINTER, a_ms: INTEGER_32): INTEGER_32
{}
function sqlite3_busy_timeout (in /usr/include/sqlite3.h) sqlite3_busy_timeout
sqlite3_cancel_auto_extension (a_x_entry_point: POINTER): INTEGER_32
{}
function sqlite3_cancel_auto_extension (in /usr/include/sqlite3.h) sqlite3_cancel_auto_extension
sqlite3_changes (an_argument_l70_c7: POINTER): INTEGER_32
{}
function sqlite3_changes (in /usr/include/sqlite3.h) sqlite3_changes
sqlite3_clear_bindings (an_argument_l343_c7: POINTER): INTEGER_32
{}
function sqlite3_clear_bindings (in /usr/include/sqlite3.h) sqlite3_clear_bindings
sqlite3_close (an_argument_l26_c7: POINTER): INTEGER_32
{}
function sqlite3_close (in /usr/include/sqlite3.h) sqlite3_close
sqlite3_close_v2 (an_argument_l29_c7: POINTER): INTEGER_32
{}
function sqlite3_close_v2 (in /usr/include/sqlite3.h) sqlite3_close_v2
sqlite3_collation_needed (an_argument_l654_c7: POINTER, an_argument_l655_c7: POINTER, an_argument_l656_c7: POINTER): INTEGER_32
{}
function sqlite3_collation_needed (in /usr/include/sqlite3.h) sqlite3_collation_needed
sqlite3_collation_needed16 (an_argument_l659_c7: POINTER, an_argument_l660_c7: POINTER, an_argument_l661_c7: POINTER): INTEGER_32
{}
function sqlite3_collation_needed16 (in /usr/include/sqlite3.h) sqlite3_collation_needed16
sqlite3_column_blob (an_argument_l395_c7: POINTER, an_i_col: INTEGER_32): POINTER
{}
function sqlite3_column_blob (in /usr/include/sqlite3.h) sqlite3_column_blob
sqlite3_column_bytes (an_argument_l399_c7: POINTER, an_i_col: INTEGER_32): INTEGER_32
{}
function sqlite3_column_bytes (in /usr/include/sqlite3.h) sqlite3_column_bytes
sqlite3_column_bytes16 (an_argument_l403_c7: POINTER, an_i_col: INTEGER_32): INTEGER_32
{}
function sqlite3_column_bytes16 (in /usr/include/sqlite3.h) sqlite3_column_bytes16
sqlite3_column_count (a_p_stmt: POINTER): INTEGER_32
{}
function sqlite3_column_count (in /usr/include/sqlite3.h) sqlite3_column_count
sqlite3_column_database_name (an_argument_l357_c7: POINTER, an_argument_l358_c7: INTEGER_32): POINTER
{}
function sqlite3_column_database_name (in /usr/include/sqlite3.h) sqlite3_column_database_name
sqlite3_column_database_name16 (an_argument_l361_c7: POINTER, an_argument_l362_c7: INTEGER_32): POINTER
{}
function sqlite3_column_database_name16 (in /usr/include/sqlite3.h) sqlite3_column_database_name16
sqlite3_column_decltype (an_argument_l381_c7: POINTER, an_argument_l382_c7: INTEGER_32): POINTER
{}
function sqlite3_column_decltype (in /usr/include/sqlite3.h) sqlite3_column_decltype
sqlite3_column_decltype16 (an_argument_l385_c7: POINTER, an_argument_l386_c7: INTEGER_32): POINTER
{}
function sqlite3_column_decltype16 (in /usr/include/sqlite3.h) sqlite3_column_decltype16
sqlite3_column_double (an_argument_l407_c7: POINTER, an_i_col: INTEGER_32): REAL_64
{}
function sqlite3_column_double (in /usr/include/sqlite3.h) sqlite3_column_double
sqlite3_column_int (an_argument_l411_c7: POINTER, an_i_col: INTEGER_32): INTEGER_32
{}
function sqlite3_column_int (in /usr/include/sqlite3.h) sqlite3_column_int
sqlite3_column_int64 (an_argument_l415_c7: POINTER, an_i_col: INTEGER_32): INTEGER_64
{}
function sqlite3_column_int64 (in /usr/include/sqlite3.h) sqlite3_column_int64
sqlite3_column_name (an_argument_l349_c7: POINTER, a_n: INTEGER_32): POINTER
{}
function sqlite3_column_name (in /usr/include/sqlite3.h) sqlite3_column_name
sqlite3_column_name16 (an_argument_l353_c7: POINTER, a_n: INTEGER_32): POINTER
{}
function sqlite3_column_name16 (in /usr/include/sqlite3.h) sqlite3_column_name16
sqlite3_column_origin_name (an_argument_l373_c7: POINTER, an_argument_l374_c7: INTEGER_32): POINTER
{}
function sqlite3_column_origin_name (in /usr/include/sqlite3.h) sqlite3_column_origin_name
sqlite3_column_origin_name16 (an_argument_l377_c7: POINTER, an_argument_l378_c7: INTEGER_32): POINTER
{}
function sqlite3_column_origin_name16 (in /usr/include/sqlite3.h) sqlite3_column_origin_name16
sqlite3_column_table_name (an_argument_l365_c7: POINTER, an_argument_l366_c7: INTEGER_32): POINTER
{}
function sqlite3_column_table_name (in /usr/include/sqlite3.h) sqlite3_column_table_name
sqlite3_column_table_name16 (an_argument_l369_c7: POINTER, an_argument_l370_c7: INTEGER_32): POINTER
{}
function sqlite3_column_table_name16 (in /usr/include/sqlite3.h) sqlite3_column_table_name16
sqlite3_column_text (an_argument_l419_c7: POINTER, an_i_col: INTEGER_32): POINTER
{}
function sqlite3_column_text (in /usr/include/sqlite3.h) sqlite3_column_text
sqlite3_column_text16 (an_argument_l423_c7: POINTER, an_i_col: INTEGER_32): POINTER
{}
function sqlite3_column_text16 (in /usr/include/sqlite3.h) sqlite3_column_text16
sqlite3_column_type (an_argument_l427_c7: POINTER, an_i_col: INTEGER_32): INTEGER_32
{}
function sqlite3_column_type (in /usr/include/sqlite3.h) sqlite3_column_type
sqlite3_column_value (an_argument_l431_c7: POINTER, an_i_col: INTEGER_32): POINTER
{}
function sqlite3_column_value (in /usr/include/sqlite3.h) sqlite3_column_value
sqlite3_commit_hook (an_argument_l687_c7: POINTER, an_argument_l688_c7: POINTER, an_argument_l689_c7: POINTER): POINTER
{}
function sqlite3_commit_hook (in /usr/include/sqlite3.h) sqlite3_commit_hook
sqlite3_compileoption_get (a_n: INTEGER_32): POINTER
{}
function sqlite3_compileoption_get (in /usr/include/sqlite3.h) sqlite3_compileoption_get
sqlite3_compileoption_used (a_z_opt_name: POINTER): INTEGER_32
{}
function sqlite3_compileoption_used (in /usr/include/sqlite3.h) sqlite3_compileoption_used
sqlite3_complete (a_sql: POINTER): INTEGER_32
{}
function sqlite3_complete (in /usr/include/sqlite3.h) sqlite3_complete
sqlite3_complete16 (a_sql: POINTER): INTEGER_32
{}
function sqlite3_complete16 (in /usr/include/sqlite3.h) sqlite3_complete16
sqlite3_config (an_argument_l52_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_config (in /usr/include/sqlite3.h) sqlite3_config (variadic call)
sqlite3_context_db_handle (an_argument_l524_c7: POINTER): POINTER
{}
function sqlite3_context_db_handle (in /usr/include/sqlite3.h) sqlite3_context_db_handle
sqlite3_create_collation (an_argument_l632_c7: POINTER, a_z_name: POINTER, an_e_text_rep: INTEGER_32, a_p_arg: POINTER, a_x_compare: POINTER): INTEGER_32
{}
function sqlite3_create_collation (in /usr/include/sqlite3.h) sqlite3_create_collation
sqlite3_create_collation16 (an_argument_l647_c7: POINTER, a_z_name: POINTER, an_e_text_rep: INTEGER_32, a_p_arg: POINTER, a_x_compare: POINTER): INTEGER_32
{}
function sqlite3_create_collation16 (in /usr/include/sqlite3.h) sqlite3_create_collation16
sqlite3_create_collation_v2 (an_argument_l639_c7: POINTER, a_z_name: POINTER, an_e_text_rep: INTEGER_32, a_p_arg: POINTER, a_x_compare: POINTER, a_x_destroy: POINTER): INTEGER_32
{}
function sqlite3_create_collation_v2 (in /usr/include/sqlite3.h) sqlite3_create_collation_v2
sqlite3_create_function (a_db: POINTER, a_z_function_name: POINTER, a_n_arg: INTEGER_32, an_e_text_rep: INTEGER_32, a_p_app: POINTER, a_x_func: POINTER, a_x_step: POINTER, a_x_final: POINTER): INTEGER_32
{}
function sqlite3_create_function (in /usr/include/sqlite3.h) sqlite3_create_function
sqlite3_create_function16 (a_db: POINTER, a_z_function_name: POINTER, a_n_arg: INTEGER_32, an_e_text_rep: INTEGER_32, a_p_app: POINTER, a_x_func: POINTER, a_x_step: POINTER, a_x_final: POINTER): INTEGER_32
{}
function sqlite3_create_function16 (in /usr/include/sqlite3.h) sqlite3_create_function16
sqlite3_create_function_v2 (a_db: POINTER, a_z_function_name: POINTER, a_n_arg: INTEGER_32, an_e_text_rep: INTEGER_32, a_p_app: POINTER, a_x_func: POINTER, a_x_step: POINTER, a_x_final: POINTER, a_x_destroy: POINTER): INTEGER_32
{}
function sqlite3_create_function_v2 (in /usr/include/sqlite3.h) sqlite3_create_function_v2
sqlite3_create_module (a_db: POINTER, a_z_name: POINTER, a_p: POINTER, a_p_client_data: POINTER): INTEGER_32
{}
function sqlite3_create_module (in /usr/include/sqlite3.h) sqlite3_create_module
sqlite3_create_module_v2 (a_db: POINTER, a_z_name: POINTER, a_p: POINTER, a_p_client_data: POINTER, a_x_destroy: POINTER): INTEGER_32
{}
function sqlite3_create_module_v2 (in /usr/include/sqlite3.h) sqlite3_create_module_v2
sqlite3_data_count (a_p_stmt: POINTER): INTEGER_32
{}
function sqlite3_data_count (in /usr/include/sqlite3.h) sqlite3_data_count
sqlite3_data_directory: POINTER
{}
sqlite3_data_directory
address_of_sqlite3_data_directory: POINTER
{}
Address of sqlite3_data_directory
set_sqlite3_data_directory (a_value: POINTER)
{}
Set variable sqlite3_data_directory value
sqlite3_db_cacheflush (an_argument_l969_c7: POINTER): INTEGER_32
{}
function sqlite3_db_cacheflush (in /usr/include/sqlite3.h) sqlite3_db_cacheflush
sqlite3_db_config (an_argument_l56_c7: POINTER, an_op: INTEGER_32): INTEGER_32
{}
function sqlite3_db_config (in /usr/include/sqlite3.h) sqlite3_db_config (variadic call)
sqlite3_db_filename (a_db: POINTER, a_z_db_name: POINTER): POINTER
{}
function sqlite3_db_filename (in /usr/include/sqlite3.h) sqlite3_db_filename
sqlite3_db_handle (an_argument_l672_c7: POINTER): POINTER
{}
function sqlite3_db_handle (in /usr/include/sqlite3.h) sqlite3_db_handle
sqlite3_db_mutex (an_argument_l840_c7: POINTER): POINTER
{}
function sqlite3_db_mutex (in /usr/include/sqlite3.h) sqlite3_db_mutex
sqlite3_db_readonly (a_db: POINTER, a_z_db_name: POINTER): INTEGER_32
{}
function sqlite3_db_readonly (in /usr/include/sqlite3.h) sqlite3_db_readonly
sqlite3_db_release_memory (an_argument_l708_c7: POINTER): INTEGER_32
{}
function sqlite3_db_release_memory (in /usr/include/sqlite3.h) sqlite3_db_release_memory
sqlite3_db_status (an_argument_l865_c7: POINTER, an_op: INTEGER_32, a_p_cur: POINTER, a_p_hiwtr: POINTER, a_reset_flg: INTEGER_32): INTEGER_32
{}
function sqlite3_db_status (in /usr/include/sqlite3.h) sqlite3_db_status
sqlite3_declare_vtab (an_argument_l766_c7: POINTER, a_z_sql: POINTER): INTEGER_32
{}
function sqlite3_declare_vtab (in /usr/include/sqlite3.h) sqlite3_declare_vtab
sqlite3_enable_load_extension (a_db: POINTER, an_onoff: INTEGER_32): INTEGER_32
{}
function sqlite3_enable_load_extension (in /usr/include/sqlite3.h) sqlite3_enable_load_extension
sqlite3_enable_shared_cache (an_argument_l702_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_enable_shared_cache (in /usr/include/sqlite3.h) sqlite3_enable_shared_cache
sqlite3_errcode (a_db: POINTER): INTEGER_32
{}
function sqlite3_errcode (in /usr/include/sqlite3.h) sqlite3_errcode
sqlite3_errmsg (an_argument_l208_c7: POINTER): POINTER
{}
function sqlite3_errmsg (in /usr/include/sqlite3.h) sqlite3_errmsg
sqlite3_errmsg16 (an_argument_l211_c7: POINTER): POINTER
{}
function sqlite3_errmsg16 (in /usr/include/sqlite3.h) sqlite3_errmsg16
sqlite3_errstr (an_argument_l214_c7: INTEGER_32): POINTER
{}
function sqlite3_errstr (in /usr/include/sqlite3.h) sqlite3_errstr
sqlite3_exec (an_argument_l33_c7: POINTER, a_sql: POINTER, a_callback: POINTER, an_argument_l36_c7: POINTER, an_errmsg: POINTER): INTEGER_32
{}
function sqlite3_exec (in /usr/include/sqlite3.h) sqlite3_exec
sqlite3_extended_errcode (a_db: POINTER): INTEGER_32
{}
function sqlite3_extended_errcode (in /usr/include/sqlite3.h) sqlite3_extended_errcode
sqlite3_extended_result_codes (an_argument_l63_c7: POINTER, an_onoff: INTEGER_32): INTEGER_32
{}
function sqlite3_extended_result_codes (in /usr/include/sqlite3.h) sqlite3_extended_result_codes
sqlite3_file_control (an_argument_l843_c7: POINTER, a_z_db_name: POINTER, an_op: INTEGER_32, an_argument_l846_c7: POINTER): INTEGER_32
{}
function sqlite3_file_control (in /usr/include/sqlite3.h) sqlite3_file_control
sqlite3_finalize (a_p_stmt: POINTER): INTEGER_32
{}
function sqlite3_finalize (in /usr/include/sqlite3.h) sqlite3_finalize
sqlite3_free (an_argument_l139_c7: POINTER)
{}
function sqlite3_free (in /usr/include/sqlite3.h) sqlite3_free
sqlite3_free_table (a_result: POINTER)
{}
function sqlite3_free_table (in /usr/include/sqlite3.h) sqlite3_free_table
sqlite3_get_autocommit (an_argument_l669_c7: POINTER): INTEGER_32
{}
function sqlite3_get_autocommit (in /usr/include/sqlite3.h) sqlite3_get_autocommit
sqlite3_get_auxdata (an_argument_l527_c7: POINTER, a_n: INTEGER_32): POINTER
{}
function sqlite3_get_auxdata (in /usr/include/sqlite3.h) sqlite3_get_auxdata
sqlite3_get_table (a_db: POINTER, a_z_sql: POINTER, a_paz_result: POINTER, a_pn_row: POINTER, a_pn_column: POINTER, a_pz_errmsg: POINTER): INTEGER_32
{}
function sqlite3_get_table (in /usr/include/sqlite3.h) sqlite3_get_table
sqlite3_initialize: INTEGER_32
{}
function sqlite3_initialize (in /usr/include/sqlite3.h) sqlite3_initialize
sqlite3_interrupt (an_argument_l76_c7: POINTER)
{}
function sqlite3_interrupt (in /usr/include/sqlite3.h) sqlite3_interrupt
sqlite3_last_insert_rowid (an_argument_l67_c7: POINTER): INTEGER_64
{}
function sqlite3_last_insert_rowid (in /usr/include/sqlite3.h) sqlite3_last_insert_rowid
sqlite3_libversion: POINTER
{}
function sqlite3_libversion (in /usr/include/sqlite3.h) sqlite3_libversion
sqlite3_libversion_number: INTEGER_32
{}
function sqlite3_libversion_number (in /usr/include/sqlite3.h) sqlite3_libversion_number
sqlite3_limit (an_argument_l218_c7: POINTER, an_id: INTEGER_32, a_new_val: INTEGER_32): INTEGER_32
{}
function sqlite3_limit (in /usr/include/sqlite3.h) sqlite3_limit
sqlite3_load_extension (a_db: POINTER, a_z_file: POINTER, a_z_proc: POINTER, a_pz_err_msg: POINTER): INTEGER_32
{}
function sqlite3_load_extension (in /usr/include/sqlite3.h) sqlite3_load_extension
sqlite3_log (an_i_err_code: INTEGER_32, a_z_format: POINTER)
{}
function sqlite3_log (in /usr/include/sqlite3.h) sqlite3_log (variadic call)
sqlite3_malloc (an_argument_l125_c7: INTEGER_32): POINTER
{}
function sqlite3_malloc (in /usr/include/sqlite3.h) sqlite3_malloc
sqlite3_malloc64 (an_argument_l128_c7: NATURAL_64): POINTER
{}
function sqlite3_malloc64 (in /usr/include/sqlite3.h) sqlite3_malloc64
sqlite3_memory_highwater (a_reset_flag: INTEGER_32): INTEGER_64
{}
function sqlite3_memory_highwater (in /usr/include/sqlite3.h) sqlite3_memory_highwater
sqlite3_memory_used: INTEGER_64
{}
function sqlite3_memory_used (in /usr/include/sqlite3.h) sqlite3_memory_used
sqlite3_mprintf (an_argument_l105_c7: POINTER): POINTER
{}
function sqlite3_mprintf (in /usr/include/sqlite3.h) sqlite3_mprintf (variadic call)
sqlite3_msize (an_argument_l142_c7: POINTER): NATURAL_64
{}
function sqlite3_msize (in /usr/include/sqlite3.h) sqlite3_msize
sqlite3_mutex_alloc (an_argument_l817_c7: INTEGER_32): POINTER
{}
function sqlite3_mutex_alloc (in /usr/include/sqlite3.h) sqlite3_mutex_alloc
sqlite3_mutex_enter (an_argument_l823_c7: POINTER)
{}
function sqlite3_mutex_enter (in /usr/include/sqlite3.h) sqlite3_mutex_enter
sqlite3_mutex_free (an_argument_l820_c7: POINTER)
{}
function sqlite3_mutex_free (in /usr/include/sqlite3.h) sqlite3_mutex_free
sqlite3_mutex_held (an_argument_l834_c7: POINTER): INTEGER_32
{}
function sqlite3_mutex_held (in /usr/include/sqlite3.h) sqlite3_mutex_held
sqlite3_mutex_leave (an_argument_l829_c7: POINTER)
{}
function sqlite3_mutex_leave (in /usr/include/sqlite3.h) sqlite3_mutex_leave
sqlite3_mutex_notheld (an_argument_l837_c7: POINTER): INTEGER_32
{}
function sqlite3_mutex_notheld (in /usr/include/sqlite3.h) sqlite3_mutex_notheld
sqlite3_mutex_try (an_argument_l826_c7: POINTER): INTEGER_32
{}
function sqlite3_mutex_try (in /usr/include/sqlite3.h) sqlite3_mutex_try
sqlite3_next_stmt (a_p_db: POINTER, a_p_stmt: POINTER): POINTER
{}
function sqlite3_next_stmt (in /usr/include/sqlite3.h) sqlite3_next_stmt
sqlite3_open (a_filename: POINTER, a_pp_db: POINTER): INTEGER_32
{}
function sqlite3_open (in /usr/include/sqlite3.h) sqlite3_open
sqlite3_open16 (a_filename: POINTER, a_pp_db: POINTER): INTEGER_32
{}
function sqlite3_open16 (in /usr/include/sqlite3.h) sqlite3_open16
sqlite3_open_v2 (a_filename: POINTER, a_pp_db: POINTER, a_flags: INTEGER_32, a_z_vfs: POINTER): INTEGER_32
{}
function sqlite3_open_v2 (in /usr/include/sqlite3.h) sqlite3_open_v2
sqlite3_os_end: INTEGER_32
{}
function sqlite3_os_end (in /usr/include/sqlite3.h) sqlite3_os_end
sqlite3_os_init: INTEGER_32
{}
function sqlite3_os_init (in /usr/include/sqlite3.h) sqlite3_os_init
sqlite3_overload_function (an_argument_l770_c7: POINTER, a_z_func_name: POINTER, a_n_arg: INTEGER_32): INTEGER_32
{}
function sqlite3_overload_function (in /usr/include/sqlite3.h) sqlite3_overload_function
sqlite3_prepare (a_db: POINTER, a_z_sql: POINTER, a_n_byte: INTEGER_32, a_pp_stmt: POINTER, a_pz_tail: POINTER): INTEGER_32
{}
function sqlite3_prepare (in /usr/include/sqlite3.h) sqlite3_prepare
sqlite3_prepare16 (a_db: POINTER, a_z_sql: POINTER, a_n_byte: INTEGER_32, a_pp_stmt: POINTER, a_pz_tail: POINTER): INTEGER_32
{}
function sqlite3_prepare16 (in /usr/include/sqlite3.h) sqlite3_prepare16
sqlite3_prepare16_v2 (a_db: POINTER, a_z_sql: POINTER, a_n_byte: INTEGER_32, a_pp_stmt: POINTER, a_pz_tail: POINTER): INTEGER_32
{}
function sqlite3_prepare16_v2 (in /usr/include/sqlite3.h) sqlite3_prepare16_v2
sqlite3_prepare_v2 (a_db: POINTER, a_z_sql: POINTER, a_n_byte: INTEGER_32, a_pp_stmt: POINTER, a_pz_tail: POINTER): INTEGER_32
{}
function sqlite3_prepare_v2 (in /usr/include/sqlite3.h) sqlite3_prepare_v2
sqlite3_profile (an_argument_l163_c7: POINTER, a_x_profile: POINTER, an_argument_l165_c7: POINTER): POINTER
{}
function sqlite3_profile (in /usr/include/sqlite3.h) sqlite3_profile
sqlite3_progress_handler (an_argument_l168_c7: POINTER, an_argument_l169_c7: INTEGER_32, an_argument_l170_c7: POINTER, an_argument_l171_c7: POINTER)
{}
function sqlite3_progress_handler (in /usr/include/sqlite3.h) sqlite3_progress_handler
sqlite3_randomness (a_n: INTEGER_32, a_p: POINTER)
{}
function sqlite3_randomness (in /usr/include/sqlite3.h) sqlite3_randomness
sqlite3_realloc (an_argument_l131_c7: POINTER, an_argument_l132_c7: INTEGER_32): POINTER
{}
function sqlite3_realloc (in /usr/include/sqlite3.h) sqlite3_realloc
sqlite3_realloc64 (an_argument_l135_c7: POINTER, an_argument_l136_c7: NATURAL_64): POINTER
{}
function sqlite3_realloc64 (in /usr/include/sqlite3.h) sqlite3_realloc64
sqlite3_release_memory (an_argument_l705_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_release_memory (in /usr/include/sqlite3.h) sqlite3_release_memory
sqlite3_reset (a_p_stmt: POINTER): INTEGER_32
{}
function sqlite3_reset (in /usr/include/sqlite3.h) sqlite3_reset
sqlite3_reset_auto_extension
{}
function sqlite3_reset_auto_extension (in /usr/include/sqlite3.h) sqlite3_reset_auto_extension
sqlite3_result_blob (an_argument_l538_c7: POINTER, an_argument_l539_c7: POINTER, an_argument_l540_c7: INTEGER_32, an_argument_l541_c7: POINTER)
{}
function sqlite3_result_blob (in /usr/include/sqlite3.h) sqlite3_result_blob
sqlite3_result_blob64 (an_argument_l544_c7: POINTER, an_argument_l545_c7: POINTER, an_argument_l546_c7: NATURAL_64, an_argument_l547_c7: POINTER)
{}
function sqlite3_result_blob64 (in /usr/include/sqlite3.h) sqlite3_result_blob64
sqlite3_result_double (an_argument_l550_c7: POINTER, an_argument_l551_c7: REAL_64)
{}
function sqlite3_result_double (in /usr/include/sqlite3.h) sqlite3_result_double
sqlite3_result_error (an_argument_l554_c7: POINTER, an_argument_l555_c7: POINTER, an_argument_l556_c7: INTEGER_32)
{}
function sqlite3_result_error (in /usr/include/sqlite3.h) sqlite3_result_error
sqlite3_result_error16 (an_argument_l559_c7: POINTER, an_argument_l560_c7: POINTER, an_argument_l561_c7: INTEGER_32)
{}
function sqlite3_result_error16 (in /usr/include/sqlite3.h) sqlite3_result_error16
sqlite3_result_error_code (an_argument_l570_c7: POINTER, an_argument_l571_c7: INTEGER_32)
{}
function sqlite3_result_error_code (in /usr/include/sqlite3.h) sqlite3_result_error_code
sqlite3_result_error_nomem (an_argument_l567_c7: POINTER)
{}
function sqlite3_result_error_nomem (in /usr/include/sqlite3.h) sqlite3_result_error_nomem
sqlite3_result_error_toobig (an_argument_l564_c7: POINTER)
{}
function sqlite3_result_error_toobig (in /usr/include/sqlite3.h) sqlite3_result_error_toobig
sqlite3_result_int (an_argument_l574_c7: POINTER, an_argument_l575_c7: INTEGER_32)
{}
function sqlite3_result_int (in /usr/include/sqlite3.h) sqlite3_result_int
sqlite3_result_int64 (an_argument_l578_c7: POINTER, an_argument_l579_c7: INTEGER_64)
{}
function sqlite3_result_int64 (in /usr/include/sqlite3.h) sqlite3_result_int64
sqlite3_result_null (an_argument_l582_c7: POINTER)
{}
function sqlite3_result_null (in /usr/include/sqlite3.h) sqlite3_result_null
sqlite3_result_subtype (an_argument_l628_c7: POINTER, an_argument_l629_c7: NATURAL_32)
{}
function sqlite3_result_subtype (in /usr/include/sqlite3.h) sqlite3_result_subtype
sqlite3_result_text (an_argument_l585_c7: POINTER, an_argument_l586_c7: POINTER, an_argument_l587_c7: INTEGER_32, an_argument_l588_c7: POINTER)
{}
function sqlite3_result_text (in /usr/include/sqlite3.h) sqlite3_result_text
sqlite3_result_text16 (an_argument_l598_c7: POINTER, an_argument_l599_c7: POINTER, an_argument_l600_c7: INTEGER_32, an_argument_l601_c7: POINTER)
{}
function sqlite3_result_text16 (in /usr/include/sqlite3.h) sqlite3_result_text16
sqlite3_result_text16be (an_argument_l610_c7: POINTER, an_argument_l611_c7: POINTER, an_argument_l612_c7: INTEGER_32, an_argument_l613_c7: POINTER)
{}
function sqlite3_result_text16be (in /usr/include/sqlite3.h) sqlite3_result_text16be
sqlite3_result_text16le (an_argument_l604_c7: POINTER, an_argument_l605_c7: POINTER, an_argument_l606_c7: INTEGER_32, an_argument_l607_c7: POINTER)
{}
function sqlite3_result_text16le (in /usr/include/sqlite3.h) sqlite3_result_text16le
sqlite3_result_text64 (an_argument_l591_c7: POINTER, an_argument_l592_c7: POINTER, an_argument_l593_c7: NATURAL_64, an_argument_l594_c7: POINTER, an_encoding: CHARACTER)
{}
function sqlite3_result_text64 (in /usr/include/sqlite3.h) sqlite3_result_text64
sqlite3_result_value (an_argument_l616_c7: POINTER, an_argument_l617_c7: POINTER)
{}
function sqlite3_result_value (in /usr/include/sqlite3.h) sqlite3_result_value
sqlite3_result_zeroblob (an_argument_l620_c7: POINTER, a_n: INTEGER_32)
{}
function sqlite3_result_zeroblob (in /usr/include/sqlite3.h) sqlite3_result_zeroblob
sqlite3_result_zeroblob64 (an_argument_l624_c7: POINTER, a_n: NATURAL_64): INTEGER_32
{}
function sqlite3_result_zeroblob64 (in /usr/include/sqlite3.h) sqlite3_result_zeroblob64
sqlite3_rollback_hook (an_argument_l692_c7: POINTER, an_argument_l693_c7: POINTER, an_argument_l694_c7: POINTER): POINTER
{}
function sqlite3_rollback_hook (in /usr/include/sqlite3.h) sqlite3_rollback_hook
sqlite3_rtree_geometry_callback (a_db: POINTER, a_z_geom: POINTER, a_x_geom: POINTER, a_p_context: POINTER): INTEGER_32
{}
function sqlite3_rtree_geometry_callback (in /usr/include/sqlite3.h) sqlite3_rtree_geometry_callback
sqlite3_rtree_query_callback (a_db: POINTER, a_z_query_func: POINTER, a_x_query_func: POINTER, a_p_context: POINTER, a_x_destructor: POINTER): INTEGER_32
{}
function sqlite3_rtree_query_callback (in /usr/include/sqlite3.h) sqlite3_rtree_query_callback
sqlite3_set_authorizer (an_argument_l153_c7: POINTER, a_x_auth: POINTER, a_p_user_data: POINTER): INTEGER_32
{}
function sqlite3_set_authorizer (in /usr/include/sqlite3.h) sqlite3_set_authorizer
sqlite3_set_auxdata (an_argument_l531_c7: POINTER, a_n: INTEGER_32, an_argument_l533_c7: POINTER, an_argument_l534_c7: POINTER)
{}
function sqlite3_set_auxdata (in /usr/include/sqlite3.h) sqlite3_set_auxdata
sqlite3_shutdown: INTEGER_32
{}
function sqlite3_shutdown (in /usr/include/sqlite3.h) sqlite3_shutdown
sqlite3_sleep (an_argument_l664_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_sleep (in /usr/include/sqlite3.h) sqlite3_sleep
sqlite3_snapshot_free (an_argument_l983_c7: POINTER)
{}
function sqlite3_snapshot_free (in /usr/include/sqlite3.h) sqlite3_snapshot_free
sqlite3_snapshot_get (a_db: POINTER, a_z_schema: POINTER, a_pp_snapshot: POINTER): INTEGER_32
{}
function sqlite3_snapshot_get (in /usr/include/sqlite3.h) sqlite3_snapshot_get
sqlite3_snapshot_open (a_db: POINTER, a_z_schema: POINTER, a_p_snapshot: POINTER): INTEGER_32
{}
function sqlite3_snapshot_open (in /usr/include/sqlite3.h) sqlite3_snapshot_open
sqlite3_snprintf (an_argument_l113_c7: INTEGER_32, an_argument_l114_c7: POINTER, an_argument_l115_c7: POINTER): POINTER
{}
function sqlite3_snprintf (in /usr/include/sqlite3.h) sqlite3_snprintf (variadic call)
sqlite3_soft_heap_limit (a_n: INTEGER_32)
{}
function sqlite3_soft_heap_limit (in /usr/include/sqlite3.h) sqlite3_soft_heap_limit
sqlite3_soft_heap_limit64 (a_n: INTEGER_64): INTEGER_64
{}
function sqlite3_soft_heap_limit64 (in /usr/include/sqlite3.h) sqlite3_soft_heap_limit64
sqlite3_sourceid: POINTER
{}
function sqlite3_sourceid (in /usr/include/sqlite3.h) sqlite3_sourceid
sqlite3_sql (a_p_stmt: POINTER): POINTER
{}
function sqlite3_sql (in /usr/include/sqlite3.h) sqlite3_sql
sqlite3_status (an_op: INTEGER_32, a_p_current: POINTER, a_p_highwater: POINTER, a_reset_flag: INTEGER_32): INTEGER_32
{}
function sqlite3_status (in /usr/include/sqlite3.h) sqlite3_status
sqlite3_status64 (an_op: INTEGER_32, a_p_current: POINTER, a_p_highwater: POINTER, a_reset_flag: INTEGER_32): INTEGER_32
{}
function sqlite3_status64 (in /usr/include/sqlite3.h) sqlite3_status64
sqlite3_step (an_argument_l389_c7: POINTER): INTEGER_32
{}
function sqlite3_step (in /usr/include/sqlite3.h) sqlite3_step
sqlite3_stmt_busy (an_argument_l257_c7: POINTER): INTEGER_32
{}
function sqlite3_stmt_busy (in /usr/include/sqlite3.h) sqlite3_stmt_busy
sqlite3_stmt_readonly (a_p_stmt: POINTER): INTEGER_32
{}
function sqlite3_stmt_readonly (in /usr/include/sqlite3.h) sqlite3_stmt_readonly
sqlite3_stmt_scanstatus (a_p_stmt: POINTER, an_idx: INTEGER_32, an_i_scan_status_op: INTEGER_32, a_p_out: POINTER): INTEGER_32
{}
function sqlite3_stmt_scanstatus (in /usr/include/sqlite3.h) sqlite3_stmt_scanstatus
sqlite3_stmt_scanstatus_reset (an_argument_l966_c7: POINTER)
{}
function sqlite3_stmt_scanstatus_reset (in /usr/include/sqlite3.h) sqlite3_stmt_scanstatus_reset
sqlite3_stmt_status (an_argument_l872_c7: POINTER, an_op: INTEGER_32, a_reset_flg: INTEGER_32): INTEGER_32
{}
function sqlite3_stmt_status (in /usr/include/sqlite3.h) sqlite3_stmt_status
sqlite3_strglob (a_z_glob: POINTER, a_z_str: POINTER): INTEGER_32
{}
function sqlite3_strglob (in /usr/include/sqlite3.h) sqlite3_strglob
sqlite3_stricmp (an_argument_l909_c7: POINTER, an_argument_l910_c7: POINTER): INTEGER_32
{}
function sqlite3_stricmp (in /usr/include/sqlite3.h) sqlite3_stricmp
sqlite3_strlike (a_z_glob: POINTER, a_z_str: POINTER, a_c_esc: NATURAL_32): INTEGER_32
{}
function sqlite3_strlike (in /usr/include/sqlite3.h) sqlite3_strlike
sqlite3_strnicmp (an_argument_l913_c7: POINTER, an_argument_l914_c7: POINTER, an_argument_l915_c7: INTEGER_32): INTEGER_32
{}
function sqlite3_strnicmp (in /usr/include/sqlite3.h) sqlite3_strnicmp
sqlite3_table_column_metadata (a_db: POINTER, a_z_db_name: POINTER, a_z_table_name: POINTER, a_z_column_name: POINTER, a_pz_data_type: POINTER, a_pz_coll_seq: POINTER, a_p_not_null: POINTER, a_p_primary_key: POINTER, a_p_autoinc: POINTER): INTEGER_32
{}
function sqlite3_table_column_metadata (in /usr/include/sqlite3.h) sqlite3_table_column_metadata
sqlite3_temp_directory: POINTER
{}
sqlite3_temp_directory
address_of_sqlite3_temp_directory: POINTER
{}
Address of sqlite3_temp_directory
set_sqlite3_temp_directory (a_value: POINTER)
{}
Set variable sqlite3_temp_directory value
sqlite3_test_control (an_op: INTEGER_32): INTEGER_32
{}
function sqlite3_test_control (in /usr/include/sqlite3.h) sqlite3_test_control (variadic call)
sqlite3_threadsafe: INTEGER_32
{}
function sqlite3_threadsafe (in /usr/include/sqlite3.h) sqlite3_threadsafe
sqlite3_total_changes (an_argument_l73_c7: POINTER): INTEGER_32
{}
function sqlite3_total_changes (in /usr/include/sqlite3.h) sqlite3_total_changes
sqlite3_trace (an_argument_l158_c7: POINTER, a_x_trace: POINTER, an_argument_l160_c7: POINTER): POINTER
{}
function sqlite3_trace (in /usr/include/sqlite3.h) sqlite3_trace
sqlite3_unlock_notify (a_p_blocked: POINTER, a_x_notify: POINTER, a_p_notify_arg: POINTER): INTEGER_32
{}
function sqlite3_unlock_notify (in /usr/include/sqlite3.h) sqlite3_unlock_notify
sqlite3_update_hook (an_argument_l697_c7: POINTER, an_argument_l698_c7: POINTER, an_argument_l699_c7: POINTER): POINTER
{}
function sqlite3_update_hook (in /usr/include/sqlite3.h) sqlite3_update_hook
sqlite3_uri_boolean (a_z_file: POINTER, a_z_param: POINTER, a_b_default: INTEGER_32): INTEGER_32
{}
function sqlite3_uri_boolean (in /usr/include/sqlite3.h) sqlite3_uri_boolean
sqlite3_uri_int64 (an_argument_l197_c7: POINTER, an_argument_l198_c7: POINTER, an_argument_l199_c7: INTEGER_64): INTEGER_64
{}
function sqlite3_uri_int64 (in /usr/include/sqlite3.h) sqlite3_uri_int64
sqlite3_uri_parameter (a_z_filename: POINTER, a_z_param: POINTER): POINTER
{}
function sqlite3_uri_parameter (in /usr/include/sqlite3.h) sqlite3_uri_parameter
sqlite3_user_data (an_argument_l521_c7: POINTER): POINTER
{}
function sqlite3_user_data (in /usr/include/sqlite3.h) sqlite3_user_data
sqlite3_value_blob (an_argument_l472_c7: POINTER): POINTER
{}
function sqlite3_value_blob (in /usr/include/sqlite3.h) sqlite3_value_blob
sqlite3_value_bytes (an_argument_l475_c7: POINTER): INTEGER_32
{}
function sqlite3_value_bytes (in /usr/include/sqlite3.h) sqlite3_value_bytes
sqlite3_value_bytes16 (an_argument_l478_c7: POINTER): INTEGER_32
{}
function sqlite3_value_bytes16 (in /usr/include/sqlite3.h) sqlite3_value_bytes16
sqlite3_value_double (an_argument_l481_c7: POINTER): REAL_64
{}
function sqlite3_value_double (in /usr/include/sqlite3.h) sqlite3_value_double
sqlite3_value_dup (an_argument_l511_c7: POINTER): POINTER
{}
function sqlite3_value_dup (in /usr/include/sqlite3.h) sqlite3_value_dup
sqlite3_value_free (an_argument_l514_c7: POINTER)
{}
function sqlite3_value_free (in /usr/include/sqlite3.h) sqlite3_value_free
sqlite3_value_int (an_argument_l484_c7: POINTER): INTEGER_32
{}
function sqlite3_value_int (in /usr/include/sqlite3.h) sqlite3_value_int
sqlite3_value_int64 (an_argument_l487_c7: POINTER): INTEGER_64
{}
function sqlite3_value_int64 (in /usr/include/sqlite3.h) sqlite3_value_int64
sqlite3_value_numeric_type (an_argument_l505_c7: POINTER): INTEGER_32
{}
function sqlite3_value_numeric_type (in /usr/include/sqlite3.h) sqlite3_value_numeric_type
sqlite3_value_subtype (an_argument_l508_c7: POINTER): NATURAL_32
{}
function sqlite3_value_subtype (in /usr/include/sqlite3.h) sqlite3_value_subtype
sqlite3_value_text (an_argument_l490_c7: POINTER): POINTER
{}
function sqlite3_value_text (in /usr/include/sqlite3.h) sqlite3_value_text
sqlite3_value_text16 (an_argument_l493_c7: POINTER): POINTER
{}
function sqlite3_value_text16 (in /usr/include/sqlite3.h) sqlite3_value_text16
sqlite3_value_text16be (an_argument_l499_c7: POINTER): POINTER
{}
function sqlite3_value_text16be (in /usr/include/sqlite3.h) sqlite3_value_text16be
sqlite3_value_text16le (an_argument_l496_c7: POINTER): POINTER
{}
function sqlite3_value_text16le (in /usr/include/sqlite3.h) sqlite3_value_text16le
sqlite3_value_type (an_argument_l502_c7: POINTER): INTEGER_32
{}
function sqlite3_value_type (in /usr/include/sqlite3.h) sqlite3_value_type
sqlite3_version: POINTER
{}
sqlite3_version
address_of_sqlite3_version: POINTER
{}
Address of sqlite3_version
set_sqlite3_version (a_value: POINTER)
{}
Set variable sqlite3_version value
sqlite3_vfs_find (a_z_vfs_name: POINTER): POINTER
{}
function sqlite3_vfs_find (in /usr/include/sqlite3.h) sqlite3_vfs_find
sqlite3_vfs_register (an_argument_l810_c7: POINTER, a_make_dflt: INTEGER_32): INTEGER_32
{}
function sqlite3_vfs_register (in /usr/include/sqlite3.h) sqlite3_vfs_register
sqlite3_vfs_unregister (an_argument_l814_c7: POINTER): INTEGER_32
{}
function sqlite3_vfs_unregister (in /usr/include/sqlite3.h) sqlite3_vfs_unregister
sqlite3_vmprintf (an_argument_l109_c7: POINTER, an_argument_l110_c7: POINTER): POINTER
{}
function sqlite3_vmprintf (in /usr/include/sqlite3.h) sqlite3_vmprintf
sqlite3_vsnprintf (an_argument_l119_c7: INTEGER_32, an_argument_l120_c7: POINTER, an_argument_l121_c7: POINTER, an_argument_l122_c7: POINTER): POINTER
{}
function sqlite3_vsnprintf (in /usr/include/sqlite3.h) sqlite3_vsnprintf
sqlite3_vtab_config (an_argument_l952_c7: POINTER, an_op: INTEGER_32): INTEGER_32
{}
function sqlite3_vtab_config (in /usr/include/sqlite3.h) sqlite3_vtab_config (variadic call)
sqlite3_vtab_on_conflict (an_argument_l957_c7: POINTER): INTEGER_32
{}
function sqlite3_vtab_on_conflict (in /usr/include/sqlite3.h) sqlite3_vtab_on_conflict
sqlite3_wal_autocheckpoint (a_db: POINTER, a_n: INTEGER_32): INTEGER_32
{}
function sqlite3_wal_autocheckpoint (in /usr/include/sqlite3.h) sqlite3_wal_autocheckpoint
sqlite3_wal_checkpoint (a_db: POINTER, a_z_db: POINTER): INTEGER_32
{}
function sqlite3_wal_checkpoint (in /usr/include/sqlite3.h) sqlite3_wal_checkpoint
sqlite3_wal_checkpoint_v2 (a_db: POINTER, a_z_db: POINTER, an_e_mode: INTEGER_32, a_pn_log: POINTER, a_pn_ckpt: POINTER): INTEGER_32
{}
function sqlite3_wal_checkpoint_v2 (in /usr/include/sqlite3.h) sqlite3_wal_checkpoint_v2
sqlite3_wal_hook (an_argument_l932_c7: POINTER, an_argument_l933_c7: POINTER, an_argument_l934_c7: POINTER): POINTER
{}
function sqlite3_wal_hook (in /usr/include/sqlite3.h) sqlite3_wal_hook
sqlite_ok: INTEGER_32
{}
SQL error or missing database
sqlite_error: INTEGER_32
{}
SQL error or missing database
sqlite_internal: INTEGER_32
{}
An internal logic error in SQLite
sqlite_perm: INTEGER_32
{}
Access permission denied
sqlite_abort: INTEGER_32
{}
Callback routine requested an abort
sqlite_busy: INTEGER_32
{}
The database file is locked
sqlite_locked: INTEGER_32
{}
A table in the database is locked
sqlite_nomem: INTEGER_32
{}
A malloc() failed
sqlite_readonly: INTEGER_32
{}
Attempt to write a readonly database
sqlite_interrupt: INTEGER_32
{}
Operation terminated by sqlite_interrupt()
sqlite_ioerr: INTEGER_32
{}
Some kind of disk I/O error occurred
sqlite_corrupt: INTEGER_32
{}
The database disk image is malformed
sqlite_notfound: INTEGER_32
{}
(Internal Only) Table or record not found
sqlite_full: INTEGER_32
{}
Insertion failed because database is full
sqlite_cantopen: INTEGER_32
{}
Unable to open the database file
sqlite_protocol: INTEGER_32
{}
Database lock protocol error
sqlite_empty: INTEGER_32
{}
(Internal Only) Database table is empty
sqlite_schema: INTEGER_32
{}
The database schema changed
sqlite_toobig: INTEGER_32
{}
Too much data for one row of a table
sqlite_constraint: INTEGER_32
{}
Abort due to constraint violation
sqlite_mismatch: INTEGER_32
{}
Data type mismatch
sqlite_misuse: INTEGER_32
{}
Library used incorrectly
sqlite_nolfs: INTEGER_32
{}
Uses OS features not supported on host
sqlite_auth: INTEGER_32
{}
Authorization denied
sqlite_row: INTEGER_32
{}
sqlite_step() has another row ready
sqlite_done: INTEGER_32
{}
sqlite_step() has finished executing
error_message (code: INTEGER_32): STRING
effective function
{}
sqlite_integer: INTEGER_32
{}
  1. define SQLITE_INTEGER 1
sqlite_float: INTEGER_32
{}
  1. define SQLITE_FLOAT 2
sqlite_text: INTEGER_32
{}
  1. define SQLITE3_TEXT
sqlite_blob: INTEGER_32
{}
  1. define SQLITE_BLOB 4
sqlite_null: INTEGER_32
{}
  1. define SQLITE_NULL 5
fts5_extension_function: POINTER
effective function
{ANY}
typedef fts5_extension_function from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_rtree_dbl: REAL_64
effective function
{ANY}
typedef sqlite3_rtree_dbl from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_destructor_type: POINTER
effective function
{ANY}
typedef sqlite3_destructor_type from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_syscall_ptr: POINTER
effective function
{ANY}
typedef sqlite3_syscall_ptr from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_callback: POINTER
effective function
{ANY}
typedef sqlite3_callback from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_uint64: NATURAL_64
effective function
{ANY}
typedef sqlite3_uint64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite3_int64: INTEGER_64
effective function
{ANY}
typedef sqlite3_int64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite_uint64: NATURAL_64
effective function
{ANY}
typedef sqlite_uint64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.
sqlite_int64: INTEGER_64
effective function
{ANY}
typedef sqlite_int64 from /usr/include/sqlite3.h Empty by design, used for anchored declarations.