Home | History | Annotate | Download | only in genrb

Lines Matching refs:curKey

95 static char* getID(const char* id, const char* curKey, char* result) {
96 if(curKey == NULL) {
101 result = (char *)uprv_malloc(sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1);
102 uprv_memset(result, 0, sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1);
107 uprv_strcat(result, curKey);