diff options
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 06dd64a..48508a4 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -141,6 +141,20 @@ pub fn gzclose(file: PhpMixed) { todo!() } +pub fn fseek(stream: PhpMixed, offset: i64) -> i64 { + todo!() +} + +pub fn rewind(stream: PhpMixed) -> bool { + todo!() +} + +pub fn strip_tags(str: &str) -> String { + todo!() +} + +pub const PHP_EOL: &str = "\n"; + pub fn fopen(file: &str, mode: &str) -> PhpMixed { todo!() } |
