Searched refs:tempVal (Results 1 – 1 of 1) sorted by relevance
214 char * tempVal = NULL; in stringToRational() local218 tempVal = (char*) malloc( sizeof(char) * (len + 1)); in stringToRational()221 if (tempVal != NULL) { in stringToRational()229 memset(tempVal, '\0', len + 1); in stringToRational()230 strncpy(tempVal, str, len); in stringToRational()231 temp = strtok_r(tempVal, ".", &ctx); in stringToRational()252 free(tempVal); in stringToRational()