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