[C] 리눅스 터미널 커서 이동 함수

move_cursor.c

[다운로드]

– 첨부파일 :

move_cursor.c


[개요]

리눅스 터미널 상에서 커서를 (x, y) 지점으로 이동시킵니다.
화면 내용을 바꾸거나 지울 때 유용합니다.


[소스 코드]

void move_cur(int x, int y)
{
     printf("\033[%dd\033[%dG", y, x);
}

Leave a Reply

Your email address will not be published.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.