I tried to fix the golang's slowest zip implementation by calling the c zlib from golang using cgo
but I get an error
error: 'deflateInit' undeclared (first use in this function)
deflateInit is defined in zlib.h
Am I missing something? thanks for any hints.
package main
/*
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "zlib.h"
*/
import "C"
import (
"fmt"
)
func main() {
fmt.Println("hmmm....")
fmt.Println(int(C.random()))
var strm C.struct_z_stream
fmt.Println(strm)
ret := C.deflateInit(&strm, 5) // trouble here
}