Skip to content

Instantly share code, notes, and snippets.

View zwsnail's full-sized avatar
👁️
looking for a job!

zwsnail zwsnail

👁️
looking for a job!
View GitHub Profile
@zwsnail
zwsnail / mkfifo.c
Created November 20, 2020 04:12
Pipe demo
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <errno.h>
/*这两个头文件bai不要也可以,因为直接用了755,而没有用头文件中的符号常量*/
//#include <sys/types.h>
//#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>