Home | History | Annotate | Download | only in genrb

Lines Matching full:curkey

105 static char* getID(const char* id, const char* curKey, char* result) {
106 if(curKey == NULL) {
111 result = (char *)uprv_malloc(sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1);
112 uprv_memset(result, 0, sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1);
117 uprv_strcat(result, curKey);