1 /* The document->data tools */
11 #include "document/docdata.h"
12 #include "document/document.h"
13 #include "util/error.h"
17 realloc_lines(struct document
*document
, int y
)
20 if_assert_failed
return NULL
;
22 if (document
->height
<= y
) {
23 if (!ALIGN_LINES(&document
->data
, document
->height
, y
+ 1))
26 document
->height
= y
+ 1;
29 return &document
->data
[y
];