home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************/
- /* */
- /* VisualAge for C++ for Windows, Version 3.5 */
- /* Licensed Material - Property of IBM */
- /* */
- /* 5801-ARR and Other Materials */
- /* */
- /* (c) Copyright IBM Corp 1991, 1996. All rights reserved. */
- /* */
- /********************************************************************/
-
- #ifndef _ICONV_H
- #define _ICONV_H
-
- #ifndef _LNK_CONV
- #ifdef _M_I386
- #define _LNK_CONV _Optlink
- #else
- #define _LNK_CONV
- #endif
- #endif
-
- #include <stdlib.h>
-
- #ifndef __ICONVP_H
- typedef void *iconv_t;
- #endif
-
- iconv_t _LNK_CONV iconv_open (const char*, const char*);
- size_t _LNK_CONV iconv(iconv_t, char**, size_t*, char**, size_t*);
- int _LNK_CONV iconv_close (iconv_t);
-
- #endif /*!_ICONV_H*/
-
-