(name: str)
| 24 | |
| 25 | |
| 26 | def has_lib_ext(name: str) -> bool: |
| 27 | ext = name.lower().rpartition('.')[-1] |
| 28 | |
| 29 | return ext in ("dll", "exe", "sys", "drv") |
| 30 | |
| 31 | |
| 32 | def io_Write(ql: Qiling, in_buffer: bytes) -> int: |
no outgoing calls
no test coverage detected