How does one interface a Go program with a C library?
I\'ve been browsing Go\'s source code but I still didn\'t figured it out. If someone has already done so, could
Check cgo. Also, take a look at misc/cgo/gmp on the Go source code for an example code on how to wrap a C library in Go.