unix环境高级编程 apue.h文件

apue.h是Unix环境下高级编程的一个自定义头文件,包含了多个系统头文件,如sys/types.h, sys/stat.h等,并定义了常量、结构体和一些实用函数,如信号处理函数、文件权限宏、读写缓存函数等,适用于Unix系统开发。" 121881112,7355117,图像分块技术:无重叠与有重叠实现解析,"['图像处理', 'C/C++', '影像分块原理']
摘要由CSDN通过智能技术生成
/* Our own header, to be included before all standard system headers */  

#ifndef _APUE_H  
#define _APUE_H  

#define _XOPEN_SOURCE   600  /* Single UNIX Specification, Version 3 */  

#include <sys/types.h>       /* some systems still require this */  
#include <sys/stat.h>  
#include <sys/termios.h>     /* for winsize */  
#ifndef TIOCGWINSZ  
#include <sys/ioctl.h>  
#endif  
#include <stdio.h>     /* for convenience */  
#include <stdlib.h>    /* for convenience */  
#include <stddef.h>    /* for offsetof */  
#include <string.h>    /* for convenience */  
#include <unistd.h>    /* for convenience */  
#include <signal.h>    /* for SIG_ERR */  


#define MAXLINE 4096               /* max line length */  

/*
* Default file access permissi
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值