dpopen.h

来自「管道通讯」· C头文件 代码 · 共 32 行

H
32
字号
// -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
// vim:tabstop=4:shiftwidth=4:expandtab:

/**
 * @file    dpopen.h
 *
 * Header file of a duplex pipe stream.
 *
 * @version 1.3, 2004/07/26
 * @author  Wu Yongwei
 *
 */

#ifndef _DPOPEN_H
#define _DPOPEN_H

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif

FILE *dpopen(const char *command);
int dpclose(FILE *stream);
int dphalfclose(FILE *stream);

#ifdef __cplusplus
}
#endif

#endif /* _DPOPEN_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?