Get start-of-file s-point. */
| 2025 | |
| 2026 | /** Get start-of-file s-point. */ |
| 2027 | static void pt_get_sof(spt_t *pt) |
| 2028 | { |
| 2029 | coord_t coord; |
| 2030 | |
| 2031 | coord.row = coord.column = 1; |
| 2032 | sheet_get_cell_pt(doc.sh, &coord, dir_before, pt); |
| 2033 | } |
| 2034 | |
| 2035 | /** Get end-of-file s-point. */ |
| 2036 | static void pt_get_eof(spt_t *pt) |
no test coverage detected