├── README.md ├── autogen.py ├── fake_include ├── mswsock.h ├── port.h ├── sys │ ├── cdefs.h │ ├── param.h │ └── port.h ├── windows.h ├── winsock2.h └── ws2tcpip.h ├── fake_libc_include ├── CONTRIBUTORS ├── LICENSE ├── X11 │ ├── Intrinsic.h │ ├── Xlib.h │ ├── _X11_fake_defines.h │ └── _X11_fake_typedefs.h ├── _ansi.h ├── _fake_defines.h ├── _fake_typedefs.h ├── _syslist.h ├── aio.h ├── alloca.h ├── ar.h ├── argz.h ├── arpa │ └── inet.h ├── asm-generic │ └── int-ll64.h ├── assert.h ├── complex.h ├── cpio.h ├── ctype.h ├── dirent.h ├── dlfcn.h ├── emmintrin.h ├── endian.h ├── envz.h ├── errno.h ├── fastmath.h ├── fcntl.h ├── features.h ├── fenv.h ├── float.h ├── fmtmsg.h ├── fnmatch.h ├── ftw.h ├── getopt.h ├── glob.h ├── grp.h ├── iconv.h ├── ieeefp.h ├── immintrin.h ├── inttypes.h ├── iso646.h ├── langinfo.h ├── libgen.h ├── libintl.h ├── limits.h ├── linux │ ├── socket.h │ └── version.h ├── locale.h ├── malloc.h ├── math.h ├── mir_toolkit │ └── client_types.h ├── monetary.h ├── mqueue.h ├── ndbm.h ├── net │ └── if.h ├── netdb.h ├── netinet │ ├── in.h │ └── tcp.h ├── newlib.h ├── nl_types.h ├── openssl │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── ssl.h │ └── x509v3.h ├── paths.h ├── poll.h ├── process.h ├── pthread.h ├── pwd.h ├── reent.h ├── regdef.h ├── regex.h ├── sched.h ├── search.h ├── semaphore.h ├── setjmp.h ├── signal.h ├── smmintrin.h ├── spawn.h ├── stdalign.h ├── stdarg.h ├── stdatomic.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── stdnoreturn.h ├── string.h ├── strings.h ├── stropts.h ├── sys │ ├── ioctl.h │ ├── ipc.h │ ├── mman.h │ ├── msg.h │ ├── poll.h │ ├── resource.h │ ├── select.h │ ├── sem.h │ ├── shm.h │ ├── socket.h │ ├── stat.h │ ├── statvfs.h │ ├── sysctl.h │ ├── time.h │ ├── times.h │ ├── types.h │ ├── uio.h │ ├── un.h │ ├── utsname.h │ └── wait.h ├── syslog.h ├── tar.h ├── termios.h ├── tgmath.h ├── threads.h ├── time.h ├── trace.h ├── ulimit.h ├── unctrl.h ├── unistd.h ├── utime.h ├── utmp.h ├── utmpx.h ├── wchar.h ├── wctype.h ├── wordexp.h ├── xcb │ └── xcb.h └── zlib.h ├── patched-quickjs-ffi-Makefile ├── qjs-cffi ├── qjs-pkg └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/README.md -------------------------------------------------------------------------------- /autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/autogen.py -------------------------------------------------------------------------------- /fake_include/mswsock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/sys/cdefs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/sys/param.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/sys/port.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/windows.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/winsock2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_include/ws2tcpip.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_libc_include/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/CONTRIBUTORS -------------------------------------------------------------------------------- /fake_libc_include/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/LICENSE -------------------------------------------------------------------------------- /fake_libc_include/X11/Intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/X11/Intrinsic.h -------------------------------------------------------------------------------- /fake_libc_include/X11/Xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/X11/Xlib.h -------------------------------------------------------------------------------- /fake_libc_include/X11/_X11_fake_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/X11/_X11_fake_defines.h -------------------------------------------------------------------------------- /fake_libc_include/X11/_X11_fake_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/X11/_X11_fake_typedefs.h -------------------------------------------------------------------------------- /fake_libc_include/_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/_ansi.h -------------------------------------------------------------------------------- /fake_libc_include/_fake_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/_fake_defines.h -------------------------------------------------------------------------------- /fake_libc_include/_fake_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/_fake_typedefs.h -------------------------------------------------------------------------------- /fake_libc_include/_syslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/_syslist.h -------------------------------------------------------------------------------- /fake_libc_include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/aio.h -------------------------------------------------------------------------------- /fake_libc_include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/alloca.h -------------------------------------------------------------------------------- /fake_libc_include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ar.h -------------------------------------------------------------------------------- /fake_libc_include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/argz.h -------------------------------------------------------------------------------- /fake_libc_include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/arpa/inet.h -------------------------------------------------------------------------------- /fake_libc_include/asm-generic/int-ll64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/asm-generic/int-ll64.h -------------------------------------------------------------------------------- /fake_libc_include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/assert.h -------------------------------------------------------------------------------- /fake_libc_include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/complex.h -------------------------------------------------------------------------------- /fake_libc_include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/cpio.h -------------------------------------------------------------------------------- /fake_libc_include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ctype.h -------------------------------------------------------------------------------- /fake_libc_include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/dirent.h -------------------------------------------------------------------------------- /fake_libc_include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/dlfcn.h -------------------------------------------------------------------------------- /fake_libc_include/emmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/emmintrin.h -------------------------------------------------------------------------------- /fake_libc_include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/endian.h -------------------------------------------------------------------------------- /fake_libc_include/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/envz.h -------------------------------------------------------------------------------- /fake_libc_include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/errno.h -------------------------------------------------------------------------------- /fake_libc_include/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/fastmath.h -------------------------------------------------------------------------------- /fake_libc_include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/fcntl.h -------------------------------------------------------------------------------- /fake_libc_include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/features.h -------------------------------------------------------------------------------- /fake_libc_include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/fenv.h -------------------------------------------------------------------------------- /fake_libc_include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/float.h -------------------------------------------------------------------------------- /fake_libc_include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/fmtmsg.h -------------------------------------------------------------------------------- /fake_libc_include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/fnmatch.h -------------------------------------------------------------------------------- /fake_libc_include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ftw.h -------------------------------------------------------------------------------- /fake_libc_include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/getopt.h -------------------------------------------------------------------------------- /fake_libc_include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/glob.h -------------------------------------------------------------------------------- /fake_libc_include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/grp.h -------------------------------------------------------------------------------- /fake_libc_include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/iconv.h -------------------------------------------------------------------------------- /fake_libc_include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ieeefp.h -------------------------------------------------------------------------------- /fake_libc_include/immintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/immintrin.h -------------------------------------------------------------------------------- /fake_libc_include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/inttypes.h -------------------------------------------------------------------------------- /fake_libc_include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/iso646.h -------------------------------------------------------------------------------- /fake_libc_include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/langinfo.h -------------------------------------------------------------------------------- /fake_libc_include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/libgen.h -------------------------------------------------------------------------------- /fake_libc_include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/libintl.h -------------------------------------------------------------------------------- /fake_libc_include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/limits.h -------------------------------------------------------------------------------- /fake_libc_include/linux/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/linux/socket.h -------------------------------------------------------------------------------- /fake_libc_include/linux/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/linux/version.h -------------------------------------------------------------------------------- /fake_libc_include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/locale.h -------------------------------------------------------------------------------- /fake_libc_include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/malloc.h -------------------------------------------------------------------------------- /fake_libc_include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/math.h -------------------------------------------------------------------------------- /fake_libc_include/mir_toolkit/client_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/mir_toolkit/client_types.h -------------------------------------------------------------------------------- /fake_libc_include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/monetary.h -------------------------------------------------------------------------------- /fake_libc_include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/mqueue.h -------------------------------------------------------------------------------- /fake_libc_include/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ndbm.h -------------------------------------------------------------------------------- /fake_libc_include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/net/if.h -------------------------------------------------------------------------------- /fake_libc_include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/netdb.h -------------------------------------------------------------------------------- /fake_libc_include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/netinet/in.h -------------------------------------------------------------------------------- /fake_libc_include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/netinet/tcp.h -------------------------------------------------------------------------------- /fake_libc_include/newlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/newlib.h -------------------------------------------------------------------------------- /fake_libc_include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/nl_types.h -------------------------------------------------------------------------------- /fake_libc_include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/openssl/err.h -------------------------------------------------------------------------------- /fake_libc_include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/openssl/evp.h -------------------------------------------------------------------------------- /fake_libc_include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/openssl/hmac.h -------------------------------------------------------------------------------- /fake_libc_include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/openssl/ssl.h -------------------------------------------------------------------------------- /fake_libc_include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/openssl/x509v3.h -------------------------------------------------------------------------------- /fake_libc_include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/paths.h -------------------------------------------------------------------------------- /fake_libc_include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/poll.h -------------------------------------------------------------------------------- /fake_libc_include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/process.h -------------------------------------------------------------------------------- /fake_libc_include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/pthread.h -------------------------------------------------------------------------------- /fake_libc_include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/pwd.h -------------------------------------------------------------------------------- /fake_libc_include/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/reent.h -------------------------------------------------------------------------------- /fake_libc_include/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/regdef.h -------------------------------------------------------------------------------- /fake_libc_include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/regex.h -------------------------------------------------------------------------------- /fake_libc_include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sched.h -------------------------------------------------------------------------------- /fake_libc_include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/search.h -------------------------------------------------------------------------------- /fake_libc_include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/semaphore.h -------------------------------------------------------------------------------- /fake_libc_include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/setjmp.h -------------------------------------------------------------------------------- /fake_libc_include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/signal.h -------------------------------------------------------------------------------- /fake_libc_include/smmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/smmintrin.h -------------------------------------------------------------------------------- /fake_libc_include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/spawn.h -------------------------------------------------------------------------------- /fake_libc_include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdalign.h -------------------------------------------------------------------------------- /fake_libc_include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdarg.h -------------------------------------------------------------------------------- /fake_libc_include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdatomic.h -------------------------------------------------------------------------------- /fake_libc_include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdbool.h -------------------------------------------------------------------------------- /fake_libc_include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stddef.h -------------------------------------------------------------------------------- /fake_libc_include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdint.h -------------------------------------------------------------------------------- /fake_libc_include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdio.h -------------------------------------------------------------------------------- /fake_libc_include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdlib.h -------------------------------------------------------------------------------- /fake_libc_include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stdnoreturn.h -------------------------------------------------------------------------------- /fake_libc_include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/string.h -------------------------------------------------------------------------------- /fake_libc_include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/strings.h -------------------------------------------------------------------------------- /fake_libc_include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/stropts.h -------------------------------------------------------------------------------- /fake_libc_include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/ioctl.h -------------------------------------------------------------------------------- /fake_libc_include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/ipc.h -------------------------------------------------------------------------------- /fake_libc_include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/mman.h -------------------------------------------------------------------------------- /fake_libc_include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/msg.h -------------------------------------------------------------------------------- /fake_libc_include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/poll.h -------------------------------------------------------------------------------- /fake_libc_include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/resource.h -------------------------------------------------------------------------------- /fake_libc_include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/select.h -------------------------------------------------------------------------------- /fake_libc_include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/sem.h -------------------------------------------------------------------------------- /fake_libc_include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/shm.h -------------------------------------------------------------------------------- /fake_libc_include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/socket.h -------------------------------------------------------------------------------- /fake_libc_include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/stat.h -------------------------------------------------------------------------------- /fake_libc_include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/statvfs.h -------------------------------------------------------------------------------- /fake_libc_include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/sysctl.h -------------------------------------------------------------------------------- /fake_libc_include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/time.h -------------------------------------------------------------------------------- /fake_libc_include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/times.h -------------------------------------------------------------------------------- /fake_libc_include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/types.h -------------------------------------------------------------------------------- /fake_libc_include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/uio.h -------------------------------------------------------------------------------- /fake_libc_include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/un.h -------------------------------------------------------------------------------- /fake_libc_include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/utsname.h -------------------------------------------------------------------------------- /fake_libc_include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/sys/wait.h -------------------------------------------------------------------------------- /fake_libc_include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/syslog.h -------------------------------------------------------------------------------- /fake_libc_include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/tar.h -------------------------------------------------------------------------------- /fake_libc_include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/termios.h -------------------------------------------------------------------------------- /fake_libc_include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/tgmath.h -------------------------------------------------------------------------------- /fake_libc_include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/threads.h -------------------------------------------------------------------------------- /fake_libc_include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/time.h -------------------------------------------------------------------------------- /fake_libc_include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/trace.h -------------------------------------------------------------------------------- /fake_libc_include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/ulimit.h -------------------------------------------------------------------------------- /fake_libc_include/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/unctrl.h -------------------------------------------------------------------------------- /fake_libc_include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/unistd.h -------------------------------------------------------------------------------- /fake_libc_include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/utime.h -------------------------------------------------------------------------------- /fake_libc_include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/utmp.h -------------------------------------------------------------------------------- /fake_libc_include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/utmpx.h -------------------------------------------------------------------------------- /fake_libc_include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/wchar.h -------------------------------------------------------------------------------- /fake_libc_include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/wctype.h -------------------------------------------------------------------------------- /fake_libc_include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/wordexp.h -------------------------------------------------------------------------------- /fake_libc_include/xcb/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/xcb/xcb.h -------------------------------------------------------------------------------- /fake_libc_include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/fake_libc_include/zlib.h -------------------------------------------------------------------------------- /patched-quickjs-ffi-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/patched-quickjs-ffi-Makefile -------------------------------------------------------------------------------- /qjs-cffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/qjs-cffi -------------------------------------------------------------------------------- /qjs-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtasic85/quickjs-cffi-generator/HEAD/qjs-pkg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycparser --------------------------------------------------------------------------------