We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1bf9e4 commit 4582e7dCopy full SHA for 4582e7d
src/lib.rs
@@ -34,3 +34,15 @@
34
mod error;
35
mod lib_generated;
36
pub use lib_generated::*;
37
+
38
+/// Special `Dircookie` value indicating the start of a directory.
39
+pub const DIRCOOKIE_START: Dircookie = 0;
40
41
+/// The "standard input" descriptor number.
42
+pub const FD_STDIN: Fd = 0;
43
44
+/// The "standard output" descriptor number.
45
+pub const FD_STDOUT: Fd = 1;
46
47
+/// The "standard error" descriptor number.
48
+pub const FD_STDERR: Fd = 2;
0 commit comments