41ffc2ef36
X-SVN-Rev: 7802
189 lines
4.1 KiB
C
189 lines
4.1 KiB
C
/*
|
|
******************************************************************************
|
|
*
|
|
* Copyright (C) 1997-2001, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*
|
|
******************************************************************************
|
|
*
|
|
* File CSTRING.C
|
|
*
|
|
* @author Helena Shih
|
|
*
|
|
* Modification History:
|
|
*
|
|
* Date Name Description
|
|
* 6/18/98 hshih Created
|
|
* 09/08/98 stephen Added include for ctype, for Mac Port
|
|
* 11/15/99 helena Integrated S/390 IEEE changes.
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
#include "unicode/utypes.h"
|
|
#include "cmemory.h"
|
|
#include "cstring.h"
|
|
|
|
U_CAPI char* U_EXPORT2
|
|
T_CString_toLowerCase(char* str)
|
|
{
|
|
char* origPtr = str;
|
|
|
|
if (str) {
|
|
do
|
|
*str = (char)tolower(*str);
|
|
while (*(str++));
|
|
}
|
|
|
|
return origPtr;
|
|
}
|
|
|
|
U_CAPI char* U_EXPORT2
|
|
T_CString_toUpperCase(char* str)
|
|
{
|
|
char* origPtr = str;
|
|
|
|
if (str) {
|
|
do
|
|
*str = (char)toupper(*str);
|
|
while (*(str++));
|
|
}
|
|
|
|
return origPtr;
|
|
}
|
|
|
|
/*Takes a int32_t and fills in a char* string with that number "radix"-based*/
|
|
|
|
U_CAPI void U_EXPORT2
|
|
T_CString_integerToString(char* buffer, int32_t i, int32_t radix)
|
|
{
|
|
int32_t length=0;
|
|
int32_t num = 0;
|
|
int8_t digit;
|
|
char temp;
|
|
|
|
while (i>=radix)
|
|
{
|
|
num = i/radix;
|
|
digit = (int8_t)(i - num*radix);
|
|
buffer[length++] = (char)(T_CString_itosOffset(digit));
|
|
i = num;
|
|
}
|
|
|
|
buffer[length] = (char)(T_CString_itosOffset(i));
|
|
buffer[length+1] = '\0';
|
|
|
|
|
|
/*Reverses the string*/
|
|
for (i = 0; i < length; ++i, --length) {
|
|
temp = buffer[length];
|
|
buffer[length] = buffer[i];
|
|
buffer[i] = temp;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
T_CString_stringToInteger(const char *integerString, int32_t radix)
|
|
{
|
|
char *end;
|
|
return strtoul(integerString, &end, radix);
|
|
|
|
}
|
|
|
|
U_CAPI int U_EXPORT2
|
|
T_CString_stricmp(const char *str1, const char *str2) {
|
|
if(str1==NULL) {
|
|
if(str2==NULL) {
|
|
return 0;
|
|
} else {
|
|
return -1;
|
|
}
|
|
} else if(str2==NULL) {
|
|
return 1;
|
|
} else {
|
|
/* compare non-NULL strings lexically with lowercase */
|
|
int rc;
|
|
unsigned char c1, c2;
|
|
|
|
for(;;) {
|
|
c1=(unsigned char)*str1;
|
|
c2=(unsigned char)*str2;
|
|
if(c1==0) {
|
|
if(c2==0) {
|
|
return 0;
|
|
} else {
|
|
return -1;
|
|
}
|
|
} else if(c2==0) {
|
|
return 1;
|
|
} else {
|
|
/* compare non-zero characters with lowercase */
|
|
rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
|
|
if(rc!=0) {
|
|
return rc;
|
|
}
|
|
}
|
|
++str1;
|
|
++str2;
|
|
}
|
|
}
|
|
}
|
|
|
|
U_CAPI int U_EXPORT2
|
|
T_CString_strnicmp(const char *str1, const char *str2, uint32_t n) {
|
|
if(str1==NULL) {
|
|
if(str2==NULL) {
|
|
return 0;
|
|
} else {
|
|
return -1;
|
|
}
|
|
} else if(str2==NULL) {
|
|
return 1;
|
|
} else {
|
|
/* compare non-NULL strings lexically with lowercase */
|
|
int rc;
|
|
unsigned char c1, c2;
|
|
|
|
for(; n--;) {
|
|
c1=(unsigned char)*str1;
|
|
c2=(unsigned char)*str2;
|
|
if(c1==0) {
|
|
if(c2==0) {
|
|
return 0;
|
|
} else {
|
|
return -1;
|
|
}
|
|
} else if(c2==0) {
|
|
return 1;
|
|
} else {
|
|
/* compare non-zero characters with lowercase */
|
|
rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
|
|
if(rc!=0) {
|
|
return rc;
|
|
}
|
|
}
|
|
++str1;
|
|
++str2;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
U_CAPI char* U_EXPORT2
|
|
uprv_strdup(const char *src) {
|
|
size_t len = strlen(src) + 1;
|
|
char *dup = (char *) uprv_malloc(len);
|
|
|
|
if (dup) {
|
|
uprv_memcpy(dup, src, len);
|
|
}
|
|
|
|
return dup;
|
|
}
|