码迷,mamicode.com
首页 >  
搜索关键字:termios    ( 26个结果
linux记录键盘
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 static struct termios initial_settings,new_settings; 9 static int peek....
分类:系统相关   时间:2014-11-16 17:14:24    阅读次数:135
C实现2048游戏
最近学习C语言,作为练习,实现了终端下的2048小游戏。代码有很多可以改进的地方。#definen4//Matrixofn*n #include<stdio.h> #include<stdlib.h> #include<string.h> #include<termios.h> #include<time.h> #include<unistd.h> staticint..
分类:其他好文   时间:2014-10-08 11:48:16    阅读次数:354
linux 下getch()函数实现
//调用 //char*ptr=(char*)malloc(sizeof(char)*128); //ptr=get_passwd(); //printf("\n");#include<stdio.h>#include<termios.h>#include<unistd.h>#include<assert.h>#include<string.h>#include<stdlib.h>intgetch(){ intc=0; structt..
分类:系统相关   时间:2014-08-15 02:42:17    阅读次数:300
linuxstruct终端数据结构c
目录(?)[-]一 输入模式三输出模式四控制模式六特殊的控制字符字符TIME和MIN值通过shell访问终端模式终端速度其他函数使用termios结构的密码程序termios 结构是在POSIX规范中定义的标准接口,它类似于系统V中的termio接口,通过设置termios类型的数据结构中的值和使用...
分类:系统相关   时间:2014-08-13 00:38:44    阅读次数:345
Linux 程序设计学习笔记----终端及串口编程及实例应用
转载请注明出处,部分内容类源于网络。 终端属性详解及设置 属性 为了控制终端正常工作,终端的属性包括输入属性、输出属性、控制属性、本地属性、线路规程属性以及控制字符。 其在系统源代码的termios.h中定义(具体的说明文档http://pubs.opengroup.org/onlinepubs/7908799/xsh/termios.h.html),其结构体成员主要是 Th...
分类:系统相关   时间:2014-08-05 19:29:40    阅读次数:587
Python:使用异常处理来判断运行的平台
try: import termios, TERMIOS 1except ImportError: try: import msvcrt 2 except ImportError: try: ...
分类:编程语言   时间:2014-07-24 22:49:03    阅读次数:251
26条   上一页 1 2 3
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!