1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#
# Cython declaration for the zran_file_util library.
#
from libc.stdio cimport FILE
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t, int64_t
from posix.types cimport off_t
from cpython.ref cimport PyObject
cdef extern from "zran_file_util.h":
size_t _fread_python(void *ptr, size_t size, size_t nmemb, PyObject *f)
int64_t _ftell_python(PyObject *f)
int _fseek_python(PyObject *f, int64_t offset, int whence)
int _feof_python(PyObject *f, size_t f_ret)
int _ferror_python(PyObject *f)
int _fflush_python(PyObject *f)
size_t _fwrite_python(const void *ptr, size_t size, size_t nmemb, PyObject *f)
int _getc_python(PyObject *f)
int _seekable_python(PyObject *f)
int ferror_(FILE *fd, PyObject *f)
int fseek_(FILE *fd, PyObject *f, int64_t offset, int whence)
int64_t ftell_(FILE *fd, PyObject *f)
size_t fread_(void *ptr, size_t size, size_t nmemb, FILE *fd, PyObject *f)
int feof_(FILE *fd, PyObject *f, size_t f_ret)
int fflush_(FILE *fd, PyObject *f)
size_t fwrite_(const void *ptr, size_t size, size_t nmemb, FILE *fd, PyObject *f)
int getc_(FILE *fd, PyObject *f)
int seekable_(FILE *fd, PyObject *f)
|