Lines Matching refs:outstr
59 char *outstr; in main() local
80 if ((outstr = (char *)malloc(bufsize)) == NULL) { in main()
84 outstr[0] = '\0'; in main()
98 ALLOC_BUFMEM(outstr, bufsize, 3); in main()
100 (void) strcat(outstr, tmpstr); in main()
103 ALLOC_BUFMEM(outstr, bufsize, strlen(optarg)+1) in main() local
104 (void) strcat(outstr, optarg); in main()
105 (void) strcat(outstr, " "); in main()
113 ALLOC_BUFMEM(outstr, bufsize, 3) in main() local
114 (void) strcat(outstr, "-- "); in main()
116 ALLOC_BUFMEM(outstr, bufsize, strlen(argv[optind])+1) in main() local
117 (void) strcat(outstr, argv[optind++]); in main()
118 (void) strcat(outstr, " "); in main()
121 (void) printf("%s\n", outstr); in main()