diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-22 20:23:46 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-22 20:23:46 -0300 |
commit | 4a29986fade6c81177dff812ddba69a598a010d8 (patch) | |
tree | 01203057a6e1d09bd32a82f88fef6914fe550225 /page.c | |
parent | ae003d1854021bdbc3128b2752198761d06772fd (diff) | |
download | jet-4a29986fade6c81177dff812ddba69a598a010d8.tar.gz jet-4a29986fade6c81177dff812ddba69a598a010d8.zip |
Separate gap edition from point edition
Diffstat (limited to 'page.c')
-rw-r--r-- | page.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -65,3 +65,16 @@ void move_gap_backward(struct page *page) { page->gap_start--; page->elements[page->gap_end] = page->elements[page->gap_start]; } + +void insert_at_gap(struct page *page, uint8_t c) { + page->elements[page->gap_start] = c; + page->gap_start++; + page->element_count++; +} + +void delete_at_gap(struct page *page) { + if (page->gap_start) { + page->gap_start--; + page->element_count--; + } +} |