aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index 48508a4..5a77a4c 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -323,6 +323,14 @@ pub fn class_exists(name: &str) -> bool {
todo!()
}
+pub fn touch(path: &str) -> bool {
+ todo!()
+}
+
+pub fn chmod(path: &str, mode: u32) -> bool {
+ todo!()
+}
+
#[derive(Debug)]
pub struct RarEntry;