CSConv Interfaces close(4) NAME close - relinquish access to a code set converter SYNOPSIS #include "csconv.h" typedef struct _csc_state { /* private data for the converter */ } csc_state_t; void prefix_close(csc_state_t * csc_state); PARAMETERS csc_state A pointer to the csc_state_t structure returned by open() routine of the converter. DESCRIPTION The close() routine is called from csconv_close(). If open() routine of the converter allocated data areas, close() routine should deallocate them. RETURN VALUES No return values are defined. SEE ALSO csconv_close(3), open(4)