* Use `C.CString()` instead of `C._GoStringPtr()`.
- Seems like sometimes the pointer returned by `C._GoStringPtr()`
could already be freed, while work is being done in C code that uses
the pointer. Using `C.CString()` ensures the C string's lifetime.
* Remove own implementation of `free_network()`; Darknet actually does
have its own!
* Changed some field names of `YOLONetwork` to make them look more
consistent.