/tmp/go-build252214657/github.com/djimenez/iconv-go/_obj/converter.cgo2.o: In function `call_iconv':
converter.cgo2.c:(.text+0x16): undefined reference to `libiconv'
/tmp/go-build252214657/github.com/djimenez/iconv-go/_obj/converter.cgo2.o: In function `_cgo_5f3e10abf205_C2func_iconv_close':
converter.cgo2.c:(.text+0xa7): undefined reference to `libiconv_close'
/tmp/go-build252214657/github.com/djimenez/iconv-go/_obj/converter.cgo2.o: In function `_cgo_5f3e10abf205_C2func_iconv_open':
converter.cgo2.c:(.text+0xfb): undefined reference to `libiconv_open'
/tmp/go-build252214657/github.com/djimenez/iconv-go/_obj/converter.cgo2.o: In function `_cgo_5f3e10abf205_Cfunc_iconv_close':
converter.cgo2.c:(.text+0x183): undefined reference to `libiconv_close'
/tmp/go-build252214657/github.com/djimenez/iconv-go/_obj/converter.cgo2.o: In function `_cgo_5f3e10abf205_Cfunc_iconv_open':
converter.cgo2.c:(.text+0x1b7): undefined reference to `libiconv_open'
collect2: error: ld returned 1 exit status
* moved sample programs to examples directory
* cleaned up make make file
* converter.go: ConvertString now uses Convert under the hood, removes some code duplication
* reader.go: No need to have two separate buffers, can write directly in to buffer given in Read call. Simplifies code greatly