Add function comments.

pull/1290/merge
nicm 2018-07-11 06:43:45 +00:00
parent 28a5bc8fae
commit 03519021b9
1 changed files with 2 additions and 0 deletions

2
grid.c
View File

@ -145,12 +145,14 @@ grid_extended_cell(struct grid_line *gl, struct grid_cell_entry *gce,
return (gcp);
}
/* Get line data. */
struct grid_line *
grid_get_line(struct grid *gd, u_int line)
{
return (&gd->linedata[line]);
}
/* Adjust number of lines. */
void
grid_adjust_lines(struct grid *gd, u_int lines)
{