8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 18:43:02 +01:00
firebird-mirror/extern/icu/source/samples/msgfmt/answers/main_0.cpp
2005-05-27 22:45:31 +00:00

27 lines
636 B
C++

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1999-2003, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#include "unicode/unistr.h"
#include "unicode/msgfmt.h"
#include "unicode/uclean.h"
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
int main(int argc, char **argv) {
UErrorCode status = U_ZERO_ERROR;
UnicodeString str;
printf("Message: ");
uprintf(str);
printf("\n");
u_cleanup();
printf("Exiting successfully\n");
return 0;
}