sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include "libutils.h" sl@0: #include"std_log_result.h" sl@0: #define LOG_FILENAME_LINE __FILE__, __LINE__ sl@0: int main() sl@0: { sl@0: __UHEAP_MARK; sl@0: { sl@0: _LIT8(src1,"integration_test9"); sl@0: char *des1= new char[20]; sl@0: int size1=20,ret,retval1,retval2,retval3,retval4,retval5,size2=40; sl@0: retval1= Tlitc8ToChar(src1,des1,size1); sl@0: printf("retval1 value is %d\n", retval1); sl@0: sl@0: char *src2= des1; sl@0: RBuf8 des2; sl@0: des2.CreateL(30); sl@0: retval2= CharToRbuf8(src2,des2); sl@0: printf("retval2 value is %d\n", retval2); sl@0: sl@0: RBuf8 src3; sl@0: src3.Create(des2); sl@0: string des3; sl@0: retval3= Rbuf8ToString(src3,des3); sl@0: printf("retval3 value is %d\n", retval3); sl@0: sl@0: string src4=des3; sl@0: TPtrC16 des4((unsigned short*)" ",50); sl@0: wchar_t *aPtr= new wchar_t[20]; sl@0: retval4= StringToTptrc16(src4,aPtr,des4); sl@0: printf("retval4 value is %d\n", retval4); sl@0: sl@0: TPtrC16 src5= des4; sl@0: char *des5= new char[30]; sl@0: retval5= Tptrc16ToCharp(src5,des5,size2); sl@0: printf("retval5 value is %d\n", retval5); sl@0: sl@0: ret= strncmp("integration_test9",(char*)des5,17); sl@0: if(ret == ESuccess) sl@0: { sl@0: printf("integration_test9 PASSED\n"); sl@0: } sl@0: else sl@0: { sl@0: printf("integration_test9 FAILED\n"); sl@0: assert_failed = true; sl@0: } sl@0: delete[] aPtr; sl@0: delete[] des5; sl@0: src3.Close(); sl@0: delete[] des1; sl@0: des2.Close(); sl@0: } sl@0: __UHEAP_MARKEND; sl@0: testResultXml("integration_test_scenario9"); sl@0: return 0; sl@0: }