1 /******************************************************************** 2 * COPYRIGHT: 3 * Copyright (c) 1999-2003, International Business Machines Corporation and 4 * others. All Rights Reserved. 5 ********************************************************************/ 6 7 #include "unicode/unistr.h" 8 #include "unicode/msgfmt.h" 9 #include "unicode/uclean.h" 10 #include <stdio.h> 11 #include <stdlib.h> 12 #include "util.h" 13 main(int argc,char ** argv)14int main(int argc, char **argv) { 15 16 UErrorCode status = U_ZERO_ERROR; 17 UnicodeString str; 18 19 printf("Message: "); 20 uprintf(str); 21 printf("\n"); 22 23 u_cleanup(); 24 printf("Exiting successfully\n"); 25 return 0; 26 } 27