// Free frees the Enchant broker and dictionary, and needs // to be called when use of the library is no longer needed // to prevent memory leaks. func (e *Enchant) Free() { if e.dict != nil { C.enchant_broker_free_dict(e.broker, e.dict) } C.enchant_broker_free(e.broker) }
// Free frees the Enchant broker and dictionary, and needs // to be called when use of the library is no longer needed // to prevent memory leaks. func (e *Enchant) Free() { C.enchant_broker_free(e.broker) }