os/ossrv/ossrv_pub/localization_function_api/inc/stdapis/iconv.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:   Contains the source for character set conversion
    15  *
    16 */
    17 
    18 
    19  
    20 #ifndef _ICONV_H
    21 #define _ICONV_H
    22 
    23 #include <stddef.h>
    24 #include <sys/cdefs.h>
    25 
    26 #ifdef __SYMBIAN32__
    27 #include <_ansi.h>
    28 #endif
    29 
    30 __BEGIN_DECLS
    31 typedef void *iconv_t;
    32 
    33 
    34 /* Allocate memory for codeset conversion descriptor */
    35 IMPORT_C iconv_t iconv_open(const char *tocharset, const char *fromcharset);
    36 
    37 
    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);
    41 
    42 /* Deallocates the memory allocated for codeset converison descriptor */
    43 IMPORT_C int iconv_close(iconv_t conversion_descriptor);
    44 
    45 __END_DECLS
    46 #endif