aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src')
-rw-r--r--crates/shirabe-php-shim/src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index ffd6edf..e991f9c 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -575,6 +575,22 @@ pub fn bzcompress(data: &[u8]) -> Option<Vec<u8>> {
todo!()
}
+pub fn getcwd() -> Option<String> {
+ todo!()
+}
+
+pub fn chdir(path: &str) -> bool {
+ todo!()
+}
+
+pub fn glob(pattern: &str) -> Vec<String> {
+ todo!()
+}
+
+pub fn basename(path: &str) -> String {
+ todo!()
+}
+
pub struct FilesystemIterator;
impl FilesystemIterator {