Home | History | Annotate | Download | only in examples

Lines Matching defs:outputPath

442         char* outputPath = (char*) malloc(len + 4 + 1); // save room to concatenate ".raw"
443 if (NULL == outputPath) {
446 memcpy(outputPath, path, len + 1);
447 strcat(outputPath, ".raw");
448 outputFp = fopen(outputPath, "w");
451 perror(outputPath);