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