📄 command.h
字号:
/*
* =====================================================================================
*
* Filename: command.h
*
* Description:
*
* Version: 1.0
* Created: 2009年01月14日 10时37分01秒
* Revision: none
* Compiler: gcc
*
* Author: 杨小合 (CH), yang.xiaohe@163.com QQ:475094605
* Company: Student
*
* =====================================================================================
*/
#ifndef __COMMAND_H__
#define __COMMAND_H__
/*
void gprs_trim_lineend(char *cp);
int gprs_do_request(int,char*);
int gprs_do_relay1(int,char*);
int gprs_do_relay2(int,char*);
int gprs_do_monitor(int,char*);
int gprs_do_sms(int,char*);
int gprs_do_go1(int,char*);
int gprs_do_go2(int,char*);
int gprs_do_light1(int,char*);
int gprs_do_light2(int,char*);
int gprs_do_smoke(int,char*);
int gprs_do_reshi(int,char*);
*/
int gprs_do_request(int,char*);
struct gprs_cmd_struct{
char *cmd_name;
int (*cmd_handler)(int fd,char *cmd_line);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -