| 791 | } |
| 792 | |
| 793 | mi_decl_nodiscard mi_decl_restrict char* mi_strndup(const char* s, size_t n) mi_attr_noexcept { |
| 794 | return mi_heap_strndup(mi_get_default_heap(),s,n); |
| 795 | } |
| 796 | |
| 797 | #ifndef __wasi__ |
| 798 | // `realpath` using mi_malloc |
nothing calls this directly
no test coverage detected