lcs_release_table(PCI) 6 January 1993 lcs_release_table(PCI) Name lcs_release_table - releases a language character set conversion table Syntax #include <lcs.h> int lcs_release_table(table) lcs_tbl table; Description This function frees the memory that was previously allocated when lcsgettable was called. The lcstbl that is being released is no longer valid. Return value This function returns 0 on success and -1 when the table is invalid. Error codes are returned in lcserrno. Example #include <lcs.h> lcs_tbl input_table; : : /* Free up the lcs table */ if (lcs_release_table(input_table) < 0 ) { errorHandler(); } See also lcsintro(PCI)