cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+3 -3
View File
@@ -15,10 +15,10 @@ zip_extract
:content
Reads one file member from a ZIP archive and returns its uncompressed bytes as a `String`.
```uce
String body = zip_read("/tmp/example.zip", "hello.txt");
```
`entry_name` is normalized to forward slashes and rejected when it is empty, absolute, drive-qualified, or contains a `..` path segment.
Use `zip_list()` when you need to discover entry names before reading them.
:example
print("zip_read example\n");