mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-15 18:57:53 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
18 lines
488 B
C
18 lines
488 B
C
#ifndef PYSQLITE_PREPARE_PROTOCOL_H
|
|
#define PYSQLITE_PREPARE_PROTOCOL_H
|
|
#include "third_party/python/Include/Python.h"
|
|
|
|
typedef struct
|
|
{
|
|
PyObject_HEAD
|
|
} pysqlite_PrepareProtocol;
|
|
|
|
extern PyTypeObject pysqlite_PrepareProtocolType;
|
|
|
|
int pysqlite_prepare_protocol_init(pysqlite_PrepareProtocol* self, PyObject* args, PyObject* kwargs);
|
|
void pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol* self);
|
|
|
|
int pysqlite_prepare_protocol_setup_types(void);
|
|
|
|
#define UNKNOWN (-1)
|
|
#endif
|