Lines Matching refs:path
554 char path[FILENAME_MAX + 1];
555 strcpy(path, dirarg);
556 strcat(path, "/");
557 zstart = strlen(path);
558 strcat(path, argv[i]);
560 while(path[++zstart] != 0) {
561 if (path[zstart] == '/') {
562 path[zstart] = '-';
565 if ((fp = fopen(path, "w")) == NULL) {
566 fprintf(stderr, "cannot create output file %s\n", path);
1037 char path[FILENAME_MAX + 1];
1041 strcpy(path, basedir);
1043 strcat(path, "/");
1044 strcat(path, relpath);
1047 if ((dp = opendir(path)) == NULL) {