I am writing some small program in C--some log in, log out, create account, send message to another account deal--that I can build on and change and innovate and polish up to refine my skills in C.
What I am trying to figure out how to implement is part of the "compose message" option. After you are prompted for the recipient, subject, and body of the message, I want to be able to go back and edit them--without having to re-type the whole thing. So if I chose the "edit message" option it would write out what I had and let me go back and change something.
I've done something sort of like this in x86 assembly, or started to do something like this, so I understand basically how this would be implemented at the machine level but I don't know how to implement it in C. Does anyone know how to do this? Things like:
- a good way to handle potentially lengthly input
- how to write out text and allow the user to edit it, without going back beyond a certain point
- how to control the position of the cursor
are baffling me in C.
Also, if this has been done before, and there exists a library of functions for things like this (even a standard library I don't know about) please note that I do want to roll my own for the purpose of learning.
Edit
Alright so I guess the method I have in my head is to read the message body one character at a time, so that I can account for carriage returns and create a multi-line message. But I'm not sure how I would backspace through it. I guess it would be really hard to do this from the command line? If not impossible, to move the cursor back and erase characters which are already out of the input buffer... Would I have to "re-draw the screen" every time? Like can I just take control of the whole console and just read and write keystrokes to certain positions? Or is this too close to the machine? I sort of did it with assembly but that used 16 bit interrupts, which I'm not allowed to use in C... This is what I wrote in assembly:

where the program would convert a byte value to two character codes representing that byte, then jump over to the right column and write the original byte (which showed up as a character), then jump back and write out two more hex numbers, in the next slot... and so on, left to right, top to bottom... it was easy, but I have NO idea how I would implement that in C. All I can do is INT 21 style input and output, writing lines to the console which scrolls the window up and so forth.
