Home | History | Annotate | Download | only in ss

Lines Matching refs:buffer

40     char *buffer;
58 buffer = malloc(80+2*strlen(request_name));
59 if (!buffer) {
64 sprintf(buffer, "usage:\n\t%s [topic|command]\nor\t%s\n",
66 ss_perror(sci_idx, 0, buffer);
67 free(buffer);
80 buffer = malloc(strlen (info->info_dirs[idx]) + 1 +
82 if (!buffer) {
87 (void) strcpy(buffer, info->info_dirs[idx]);
88 (void) strcat(buffer, "/");
89 (void) strcat(buffer, argv[1]);
90 (void) strcat(buffer, ".info");
91 fd = open(buffer, O_RDONLY);
92 free(buffer);