Viewing profile — imstuff
imstuff
HN member- Joined
- Wed, Oct 23, 2019, 8:43 AM UTC
- HN karma
- 1
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About imstuff
No profile information was provided.
Recent public activity
-
comment
Comment #21646045
It seems it's only for Azure: https://docs.microsoft.com/en-us/visualstudio/debugger/debug...
-
comment
Comment #21645912
Your `fn rust_qsort` takes ownership of the vector, so it frees its memory after sorting and it can't be used after sorting in the caller function. And generic `impl FnMut` won't w…
-
comment
Comment #21645877
ok extern "C" { #![allow(improper_ctypes)] fn qsort( ptr: *mut (), count: usize, size: usize, comp: extern "C" fn (*const (), *const ()) -> i32, ); fn qsort_r( ptr: *mut (), count:…