mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 20:52:22 +00:00
13 lines
288 B
Python
13 lines
288 B
Python
# Copyright © 2017 ChaiShushan <chaishushan{AT}gmail.com>.
|
|
# License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
from ctypes import *
|
|
|
|
libso = CDLL("./say-hello.so")
|
|
|
|
SayHello = libso.SayHello
|
|
SayHello.argtypes = [c_char_p]
|
|
SayHello.restype = None
|
|
|
|
SayHello(c_char_p(b"hello"))
|