A simple text editor implementation in C that supports basic text manipulation operations using a doubly linked list data structure. The editor maintains a cursor position and allows various operations to modify text.
- Move cursor left/right
- Insert/write characters at cursor position
- Search for specific characters
- Undo/redo operations
- Show current text state
- Maximum text length of 100 characters
- Reads commands from
tema1.in - Outputs results to
tema1.out
Uses a doubly linked list to store characters and track cursor position, allowing for efficient text manipulation and navigation.