scuffed-code/icu4c/source/test/intltest/cpputils.cpp
Helena Chapman 3aaa52af8d ICU-161 updated the copyright notices.
X-SVN-Rev: 596
2000-01-15 02:00:06 +00:00

49 lines
929 B
C++

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#include "unicode/utypes.h"
#include "cpputils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*Debugging functions, DO NOT USE*/
;
void printUChar(const UChar *uniString)
{
uint32_t i=0;
putchar('{');
while (uniString[i])
{
printf( "0x%.4X\t", (UChar)uniString[i++]);
if (!(i%8)) putchar('\n');
}
putchar('}');
printf("(%d)", i);
}
void printChar(const char *charString)
{
uint32_t i=0;
putchar('{');
while (charString[i])
{
printf( "0x%.2X\t", (unsigned char)charString[i++]);
if (!(i%8)) putchar('\n');
}
putchar('}');
printf("(%d)", i);
}