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
|
|
|
|
***********************************************************************
|
|
|
|
***********************************************************************
|
2002-12-06 01:40:42 +00:00
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1999-2002, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2016-09-28 22:12:27 +00:00
|
|
|
***********************************************************************/
|
2002-12-06 01:40:42 +00:00
|
|
|
|
2000-09-06 19:49:13 +00:00
|
|
|
#include "unicode/unistr.h"
|
|
|
|
|
|
|
|
// Verify that a UErrorCode is successful; exit(1) if not
|
|
|
|
void check(UErrorCode& status, const char* msg);
|
|
|
|
|
|
|
|
// Replace nonprintable characters with unicode escapes
|
|
|
|
UnicodeString escape(const UnicodeString &source);
|
|
|
|
|
|
|
|
// Print the given string to stdout
|
|
|
|
void uprintf(const UnicodeString &str);
|