2016-09-28 22:12:27 +00:00
|
|
|
/**********************************************************************
|
2017-01-20 00:20:31 +00:00
|
|
|
* © 2016 and later: Unicode, Inc. and others.
|
2016-09-28 22:12:27 +00:00
|
|
|
* License & terms of use: http://www.unicode.org/copyright.html#License
|
|
|
|
***********************************************************************
|
|
|
|
***********************************************************************
|
2003-05-29 22:10:20 +00:00
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1999-2003, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2016-09-28 22:12:27 +00:00
|
|
|
***********************************************************************/
|
2003-05-29 22:10:20 +00:00
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|