diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 00:21:58 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 10:00:40 +0900 |
| commit | 4aafa15a34645394b693155cc8db07e3581320c0 (patch) | |
| tree | cf120250bf3af81047e3e7551811c29f0336ca58 /crates/shirabe-php-shim/src | |
| parent | 00a6a184fedafbb92f96dff8ddd19dafb127cc96 (diff) | |
| download | php-shirabe-4aafa15a34645394b693155cc8db07e3581320c0.tar.gz php-shirabe-4aafa15a34645394b693155cc8db07e3581320c0.tar.zst php-shirabe-4aafa15a34645394b693155cc8db07e3581320c0.zip | |
feat(port): port ArchiveDownloader.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -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!() +} |
