摘要:
NAME fmemopen, open_memstream, open_wmemstream - open memory as streamSYNOPSIS #include <stdio.h> FILE *fmemopen(void *buf, size_t size, const char *mode); FILE *open_memstream(char **ptr, size_t *sizeloc); #include <wchar.h> FILE *open_wmemstream(wchar_t **ptr, size... 阅读全文
摘要:
if-fi#! /bin/bash
# 删除文件 和 新建文件
file=readme
function delFile(){ if [ -e ./$file ];then rm -f ./$file echo "del $file ..." fi
}
function addFile(){ if [ ! -f ./$file ];then touch $file echo "add $file ..." fi
}
delFile
addFile Result:(没有readme文件)[work ... 阅读全文
摘要:
管道:当从一个进程连接数据流到另一个进程时,使用术语管道(pipe)。# include <unistd.h>int pipe(int filedes[2]); //创建管道pipe()说明:返回值:0成功,-1出错。如果调用成功,则进程此时由了两个额外的打开文件描述符,filedes[0]中的值是管道的读取端,而filedes[1]是管道的写入端。#include<unistd.h>#include<sys/types.h>#include<errno.h>#include<stdio.h>#include<stdlib.h& 阅读全文