The ASCII code value corresponding to the control character of the test keyboard

Source: Internet
Author: User
Tags change settings

#include <stdio.h>
#include <termio.h>//terminal operation header File

Char getch (void)
{
struct Termios TM, Tm_old;
int fd = 0, ch;

if (Tcgetattr (FD, &AMP;TM) < 0) {//Save current terminal settings
return-1;
}

Tm_old = TM;
Cfmakeraw (&AMP;TM); Change terminal set to original mode, all input data in this mode is processed in bytes
if (tcsetattr (FD, Tcsanow, &tm) < 0) {//settings after the change
return-1;
}

ch = getchar ();
if (tcsetattr (FD, Tcsanow, &tm_old) < 0) {//Change settings to original appearance
return-1;
}

return (char) ch;
}

int main (void)
{
Char ch;
while (ch = getch ()) = 0x0D && ch! = 0x1B) {
printf ("%x", ch);
}
printf ("\ n");
return 0;
}

The ASCII code value corresponding to the control character of the test keyboard

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.