7 lines
154 B
Python
7 lines
154 B
Python
from ctypes import CDLL
|
|
|
|
if __name__ == '__main__':
|
|
# libc = CDLL("libnvrtc.alt.so.12")
|
|
libc = CDLL("libnvrtc.so.12")
|
|
# print(libc.__dir__())
|