~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/samples/numfmt/util.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "unicode/unistr.h"
2
 
#include "unicode/fmtable.h"
3
 
 
4
 
// Verify that a UErrorCode is successful; exit(1) if not
5
 
void check(UErrorCode& status, const char* msg);
6
 
 
7
 
// Replace nonprintable characters with unicode escapes
8
 
UnicodeString escape(const UnicodeString &source);
9
 
 
10
 
// Print the given string to stdout
11
 
void uprintf(const UnicodeString &str);
12
 
 
13
 
// Create a display string for a formattable
14
 
UnicodeString formattableToString(const Formattable& f);