Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Contains the source for character set conversion
24 #include <sys/cdefs.h>
31 typedef void *iconv_t;
34 /* Allocate memory for codeset conversion descriptor */
35 IMPORT_C iconv_t iconv_open(const char *tocharset, const char *fromcharset);
38 /* Converts characters in the input buffer from source character set to destination charcater set and stores the converted charcaters in output buffer */
39 IMPORT_C size_t iconv(iconv_t conversion_descriptor, const char **inbuf, size_t *inbytesleft,
40 char **outbuf, size_t *outbytesleft);
42 /* Deallocates the memory allocated for codeset converison descriptor */
43 IMPORT_C int iconv_close(iconv_t conversion_descriptor);