📄 unistd.h
字号:
#ifndef _UNISTD_H/* * This file is part of the Mingw32 package. * * unistd.h maps (roughly) to io.h * Other headers included by unistd.h may be selectively processed; * __UNISTD_H_SOURCED__ enables such selective processing. */#define _UNISTD_H#define __UNISTD_H_SOURCED__ 1#include <io.h>#include <process.h>#include <getopt.h>/* These are also defined in stdio.h. */#ifndef SEEK_SET#define SEEK_SET 0#endif#ifndef SEEK_CUR#define SEEK_CUR 1#endif#ifndef SEEK_END#define SEEK_END 2#endif#ifdef __cplusplusextern "C" {#endif#if !defined __NO_ISOCEXT#include <sys/types.h> /* For useconds_t. */int __cdecl __MINGW_NOTHROW usleep(useconds_t useconds);#endif /* Not __NO_ISOCEXT *//* This is defined as a real library function to allow autoconf to verify its existence. */int ftruncate(int, off_t);__CRT_INLINE int ftruncate(int __fd, off_t __length){ return _chsize (__fd, __length);}#ifdef __cplusplus}#endif#undef __UNISTD_H_SOURCED__#endif /* _UNISTD_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -