parse.h
来自「EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。」· C头文件 代码 · 共 37 行
H
37 行
/* * parse.h * * Copyright 1993 Matthew Green * Copyright 1997 EPIC Software Labs * See the Copyright file for license information. */#ifndef __parse_h__#define __parse_h__typedef struct { const char *command; void (*inbound_handler) (const char *, const char *, const char **); void (*outbound_handler) (char *); int flags;} protocol_command;extern protocol_command rfc1459[];extern int num_protocol_cmds;#define PROTO_NOQUOTE 1 << 0#define PROTO_DEPREC 1 << 1 void rfc1459_odd (const char *, const char *, const char **);const char *PasteArgs (const char **, int); void parse_server (const char *, size_t); int is_channel (const char *);extern const char *FromUserHost;#if 0extern int doing_privmsg;#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?