跳轉到內容

C 程式設計/POSIX 參考/fcntl.h

來自華夏公益教科書,開放的書籍,為開放的世界

fcntl.h 是 C POSIX 庫中用於 C 程式語言的標題,其中包含引用檔案控制的構造,例如開啟檔案、檢索和更改檔案許可權、鎖定檔案以進行編輯等。

成員函式

[編輯 | 編輯原始碼]

int fcntl(int __fd, int __cmd, ...)

成員常量

[編輯 | 編輯原始碼]

int open(char* pathname, int flags, ...);
int creat(const char *,int);

成員型別

[編輯 | 編輯原始碼]

標準化

[編輯 | 編輯原始碼]
華夏公益教科書