col 198 source4/heimdal/lib/roken/getarg.c check_column(FILE *f, int col, int len, int columns)
col 200 source4/heimdal/lib/roken/getarg.c if(col + len > columns) {
col 202 source4/heimdal/lib/roken/getarg.c col = fprintf(f, " ");
col 204 source4/heimdal/lib/roken/getarg.c return col;
col 234 source4/heimdal/lib/roken/getarg.c int col = 0, columns;
col 251 source4/heimdal/lib/roken/getarg.c col = 0;
col 252 source4/heimdal/lib/roken/getarg.c col += fprintf (stderr, "%s: %s", usage, progname);
col 266 source4/heimdal/lib/roken/getarg.c col = check_column(stderr, col, strlen(buf) + 1, columns);
col 267 source4/heimdal/lib/roken/getarg.c col += fprintf(stderr, " %s", buf);
col 288 source4/heimdal/lib/roken/getarg.c col = check_column(stderr, col, strlen(buf) + 1, columns);
col 289 source4/heimdal/lib/roken/getarg.c col += fprintf(stderr, " %s", buf);
col 299 source4/heimdal/lib/roken/getarg.c col = check_column(stderr, col, strlen(buf) + 1, columns);
col 300 source4/heimdal/lib/roken/getarg.c col += fprintf(stderr, " %s", buf);
col 307 source4/heimdal/lib/roken/getarg.c check_column(stderr, col, strlen(extra_string) + 1, columns);
col 128 source4/heimdal/lib/roken/rtbl.c struct column_data *col, **tmp;
col 134 source4/heimdal/lib/roken/rtbl.c col = malloc (sizeof (*col));
col 135 source4/heimdal/lib/roken/rtbl.c if (col == NULL)
col 137 source4/heimdal/lib/roken/rtbl.c col->header = strdup (header);
col 138 source4/heimdal/lib/roken/rtbl.c if (col->header == NULL) {
col 139 source4/heimdal/lib/roken/rtbl.c free (col);
col 142 source4/heimdal/lib/roken/rtbl.c col->prefix = NULL;
col 143 source4/heimdal/lib/roken/rtbl.c col->width = 0;
col 144 source4/heimdal/lib/roken/rtbl.c col->flags = flags;
col 145 source4/heimdal/lib/roken/rtbl.c col->num_rows = 0;
col 146 source4/heimdal/lib/roken/rtbl.c col->rows = NULL;
col 147 source4/heimdal/lib/roken/rtbl.c col->column_id = id;
col 148 source4/heimdal/lib/roken/rtbl.c col->suffix = NULL;
col 149 source4/heimdal/lib/roken/rtbl.c table->columns[table->num_columns++] = col;