mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
11 lines
158 B
Python
11 lines
158 B
Python
from raw import *
|
|
from static import *
|
|
|
|
from cffi import FFI
|
|
|
|
ffi = FFI()
|
|
|
|
libpcp = ffi.dlopen('libpcp1.so.0')
|
|
|
|
ffi.cdef("%s\n%s\n" % (STATIC, PCP_RAW_CODE))
|