I have written a windows console based text-editor with C & I'm gonna add copy/paste feature to it. Editor is made up of a doubly-linked list that each structure just contains one letter. editor gets letters, arrow keys, backspace, ... with getch function (which is found in conio.h) & uses their ascii code to recognize them.
when a selection is made and CRTL+C is pressed, the selection is copied to memory but I don't know where to get that copied text.
Hope I cleared the problem, Thanks.