os/ossrv/ossrv_pub/localization_function_api/inc/stdapis/iconv.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/localization_function_api/inc/stdapis/iconv.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:   Contains the source for character set conversion
    1.18 + *
    1.19 +*/
    1.20 +
    1.21 +
    1.22 + 
    1.23 +#ifndef _ICONV_H
    1.24 +#define _ICONV_H
    1.25 +
    1.26 +#include <stddef.h>
    1.27 +#include <sys/cdefs.h>
    1.28 +
    1.29 +#ifdef __SYMBIAN32__
    1.30 +#include <_ansi.h>
    1.31 +#endif
    1.32 +
    1.33 +__BEGIN_DECLS
    1.34 +typedef void *iconv_t;
    1.35 +
    1.36 +
    1.37 +/* Allocate memory for codeset conversion descriptor */
    1.38 +IMPORT_C iconv_t iconv_open(const char *tocharset, const char *fromcharset);
    1.39 +
    1.40 +
    1.41 +/* Converts characters in the input buffer from source character set to destination charcater set and stores the converted charcaters in output buffer */
    1.42 +IMPORT_C size_t iconv(iconv_t conversion_descriptor, const char **inbuf, size_t *inbytesleft,
    1.43 +    char **outbuf, size_t *outbytesleft);
    1.44 +
    1.45 +/* Deallocates the memory allocated for codeset converison descriptor */
    1.46 +IMPORT_C int iconv_close(iconv_t conversion_descriptor);
    1.47 +
    1.48 +__END_DECLS
    1.49 +#endif