clseibold / Edim

Ed Improved. A simple interactive line editor program written in C and inspired by Ed, TECO, Vim, and 4coder.
8 stars 0 forks source link

Data Structure to store the text #2

Open ghost opened 6 years ago

ghost commented 6 years ago

Currently, the data structure is a dynamic array of lines, each line pointing to a dynamic array of characters.

Some ways this could be improved:

Current Potential Problems: