epoc32/include/stdapis/iconv.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations

/*
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
* which accompanies this distribution, and is available
* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
* Name        : iconv.h
* Part of     : LIBC
* Contains the source for character set conversion
* Version     : 
* This material, including documentation and any related 
* computer programs, is protected by copyright controlled by 
* Nokia Corporation. All rights are reserved. Copying, 
* including reproducing, storing, adapting or translating, any 
* or all of this material requires the prior written consent of 
* Nokia Corporation. This material also contains confidential 
* information which may not be disclosed to others without the 
* prior written consent of Nokia Corporation.
*
*/


 
#ifndef _ICONV_H
#define _ICONV_H

#include <stddef.h>
#include <sys/cdefs.h>

#ifdef __SYMBIAN32__
#include <_ansi.h>
#endif

__BEGIN_DECLS
typedef void *iconv_t;


/* Allocate memory for codeset conversion descriptor */
IMPORT_C iconv_t iconv_open(const char *tocharset, const char *fromcharset);


/* Converts characters in the input buffer from source character set to destination charcater set and stores the converted charcaters in output buffer */
IMPORT_C size_t iconv(iconv_t conversion_descriptor, const char **inbuf, size_t *inbytesleft,
    char **outbuf, size_t *outbytesleft);

/* Deallocates the memory allocated for codeset converison descriptor */
IMPORT_C int iconv_close(iconv_t conversion_descriptor);

__END_DECLS
#endif