equal
deleted
inserted
replaced
18 #include <stdio.h> |
18 #include <stdio.h> |
19 #include<e32std.h> |
19 #include<e32std.h> |
20 #include "libutils.h" |
20 #include "libutils.h" |
21 #include"std_log_result.h" |
21 #include"std_log_result.h" |
22 #define LOG_FILENAME_LINE __FILE__, __LINE__ |
22 #define LOG_FILENAME_LINE __FILE__, __LINE__ |
23 void main() |
23 int main() |
24 { |
24 { |
25 __UHEAP_MARK; |
25 __UHEAP_MARK; |
26 TBufC<20> buf _L("praveen"); |
26 TBufC<20> buf _L("praveen"); |
27 TPtr16 src = buf.Des(); |
27 TPtr16 src = buf.Des(); |
28 wchar_t * des= new wchar_t [20]; |
28 wchar_t * des= new wchar_t [20]; |
41 } |
41 } |
42 delete[] des; |
42 delete[] des; |
43 des = NULL; |
43 des = NULL; |
44 __UHEAP_MARKEND; |
44 __UHEAP_MARKEND; |
45 testResultXml("test_tptr16towcharp_positive"); |
45 testResultXml("test_tptr16towcharp_positive"); |
|
46 |
|
47 return 0; |
46 } |
48 } |