diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 512c932..d89aed5 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -655,3 +655,15 @@ pub const CURL_VERSION_HTTPS_PROXY: i64 = 2097152; pub fn curl_version() -> Option<IndexMap<String, Box<PhpMixed>>> { todo!() } + +pub fn bin2hex(data: &[u8]) -> String { + todo!() +} + +pub fn random_bytes(length: usize) -> Vec<u8> { + todo!() +} + +pub fn is_dir(path: &str) -> bool { + todo!() +} |
