unistd.h linux,Linux 标准库下的unistd.h
unistd.h在unix中類似于Window中的windows.h!
#ifdef WIN32
#include
#else
#include
#endif
unistd.h含有的常量與函數:
ssize_t ? ? ? ?read(int, void *,size_t);
ssize_t ? ? ? ?write(int, const void *,size_t);
int ? ? ? ? ? ? ? ? unlink(const char *);
int?? ? ?usleep(useconds_t);
unsigned ? ?sleep(unsigned);
int ? ? ? ? ?access(const char *, int);
unsigned ? ? alarm(unsigned);
int ? ? ? ? ?chdir(const char *);
int ? ? ? ? ?chown(const char *, uid_t, gid_t);
int ? ? ? ? ?close(int);
size_t ? ? ?confstr(int, char *, size_t);
void ? ? ? ?_exit(int);
pid_t ? ? ? ?fork(void);
NULL ? ? ? ? ? ? ? ? ? ? ?// Null pointer
SEEK_SET ? ? ?0 ? // Set file offset to offset. ? ? ? ? ? ? ? ? ? ? ? ? ?? SEEK_CUR ? ?1 ? // Set file offset to current plus offset. SEEK_END ? ? 2 ?// Set file offset to EOF plus offset.
總結
以上是生活随笔為你收集整理的unistd.h linux,Linux 标准库下的unistd.h的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python图像文件压缩_python实
- 下一篇: linux 其他常用命令