Home | History | Annotate | Download | only in translit
      1 /***********************************************************************
      2  * Copyright (C) 2016 and later: Unicode, Inc. and others.
      3  * License & terms of use: http://www.unicode.org/copyright.html#License
      4  ***********************************************************************
      5  ***********************************************************************
      6  * COPYRIGHT:
      7  * Copyright (c) 1999-2002, International Business Machines Corporation and
      8  * others. All Rights Reserved.
      9  ***********************************************************************/
     10 
     11 #include "unicode/unistr.h"
     12 
     13 // Verify that a UErrorCode is successful; exit(1) if not
     14 void check(UErrorCode& status, const char* msg);
     15 
     16 // Replace nonprintable characters with unicode escapes
     17 UnicodeString escape(const UnicodeString &source);
     18 
     19 // Print the given string to stdout
     20 void uprintf(const UnicodeString &str);
     21