exec.h
来自「EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。」· C头文件 代码 · 共 24 行
H
24 行
/* * exec.h: header for exec.c * * Copyright 1990 Michael Sandrof * Copyright 1997 EPIC Software Labs * See the Copyright file for license information */#ifndef __exec_h__#define __exec_h__ BUILT_IN_COMMAND(execcmd); void do_processes (fd_set *, fd_set *); int get_child_exit (pid_t); void clean_up_processes (void); int text_to_process (int, const char *, int); void exec_server_delete (int); void add_process_wait (int, const char *); int get_process_index (char **); /* XXXX */ int is_valid_process (const char *); int process_is_running (char *);#endif /* _EXEC_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?