]> git.saurik.com Git - apple/icu.git/blob - icuSources/samples/msgfmt/answers/main_1.cpp
ICU-551.51.4.tar.gz
[apple/icu.git] / icuSources / samples / msgfmt / answers / main_1.cpp
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
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 }