ICU-161 itoa -> cstring.h hdr file

X-SVN-Rev: 615
This commit is contained in:
Steven R. Loomis 2000-01-17 22:59:59 +00:00
parent 5e7c1c94b9
commit 47b86344d4

View File

@ -24,6 +24,7 @@
#include "unicode/ustring.h"
#include "unicode/uloc.h"
/* prototypes --------------------------------------------------------------- */
static void
@ -268,7 +269,7 @@ void TestMisc()
for (i = 0; i < U_MAX_VERSION_LENGTH; i++ )
{
int len = 0;
itoa(realVersion[i], temp, 10);
T_CString_integerToString(temp, realVersion[i], 10);
strcat(icuVersion, temp);
len = strlen(icuVersion);
if (i != U_MAX_VERSION_LENGTH-1)