Lines Matching refs:outstr
62 char *outstr;
83 if ((outstr = (char *)malloc(bufsize)) == NULL) {
87 outstr[0] = '\0';
101 ALLOC_BUFMEM(outstr, bufsize, 3);
103 (void) strcat(outstr, tmpstr);
106 ALLOC_BUFMEM(outstr, bufsize, strlen(optarg)+1)
107 (void) strcat(outstr, optarg);
108 (void) strcat(outstr, " ");
116 ALLOC_BUFMEM(outstr, bufsize, 3)
117 (void) strcat(outstr, "-- ");
119 ALLOC_BUFMEM(outstr, bufsize, strlen(argv[optind])+1)
120 (void) strcat(outstr, argv[optind++]);
121 (void) strcat(outstr, " ");
124 (void) printf("%s\n", outstr);