📄 unistd.h
字号:
/*** Copyright (C) 1999 Albert Faber** ** This program is free software; you can redistribute it and/or modify** it under the terms of the GNU General Public License as published by** the Free Software Foundation; either version 2 of the License, or** (at your option) any later version.** ** This program is distributed in the hope that it will be useful,** but WITHOUT ANY WARRANTY; without even the implied warranty of** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the** GNU General Public License for more details.** ** You should have received a copy of the GNU General Public License** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*//* A hack file in order to compile the libsndfile package for win32 systems ** Define the things that Bill and his fellows forgot to define*/#ifdef _WIN32#include <direct.h>#define _IFMT _S_IFMT#define _IFREG _S_IFREG#define S_ISREG(m) ((m) & _S_IFREG)#define S_IRWXU 0000700 /* rwx, owner */#define S_IRUSR 0000400 /* read permission, owner */#define S_IWUSR 0000200 /* write permission, owner */#define S_IXUSR 0000100 /* execute/search permission, owner */#define S_IRWXG 0000070 /* rwx, group */#define S_IRGRP 0000040 /* read permission, group */#define S_IWGRP 0000020 /* write permission, grougroup */#define S_IXGRP 0000010 /* execute/search permission, group */#define S_IRWXO 0000007 /* rwx, other */#define S_IROTH 0000004 /* read permission, other */#define S_IWOTH 0000002 /* write permission, other */#define S_IXOTH 0000001 /* execute/search permission, other */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -