util.h revision c73f511526464f8e56c242df80552e9b0d94ae3d
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
9// Verify that a UErrorCode is successful; exit(1) if not
10void check(UErrorCode& status, const char* msg);
11
12// Replace nonprintable characters with unicode escapes
13UnicodeString escape(const UnicodeString &source);
14
15// Print the given string to stdout
16void uprintf(const UnicodeString &str);
17