Lines Matching refs:string
40 #include <string.h>
211 int UNIXgetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
213 compALen = unorm_normalize(string, len, UNORM_NFC, 0, compA, 256, &status);
240 int WingetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
242 compALen = unorm_normalize(string, len, UNORM_NFC, 0, compA, 256, &status);
282 int ICUgetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
283 return ucol_getSortKey(gCol, string, len, buffer, buffCapacity);
299 void stringToLower(char *string) {
301 for(i = 0; i < strlen(string); i++) {
302 string[i] = tolower(string[i]);