9 lines
No EOL
181 B
Python
9 lines
No EOL
181 B
Python
from timeit import default_timer as timer
|
|
from ctypes import *
|
|
|
|
|
|
proot = CDLL("./fastproot/target/debug/fastproot.dll")
|
|
start = timer()
|
|
proot.test()
|
|
end = timer()
|
|
print(end - start) |