Home | History | Annotate | Download | only in iconv

Lines Matching refs:iconv_t

93 Iconv_t
101 iconv_t * cd;
104 return (Iconv_t) -1;
110 cd = (iconv_t *) malloc(sizeof *cd);
113 return (Iconv_t) -1;
119 return (Iconv_t) -1;
122 return (Iconv_t) cd;
127 Iconv(Iconv_t cd, char * * inbuf, size_t * inbytesleft,
131 if (!cd || cd == (Iconv_t) -1) {
136 return iconv(*(iconv_t *) cd, inbuf, inbytesleft, outbuf, outbytesleft);
141 IconvClose(Iconv_t cd)
144 if (!cd || cd == (Iconv_t) -1) {
149 if (iconv_close(*(iconv_t *) cd))