Live data from Hacker News

Viewing profile — imstuff

imstuff

HN member
Joined
Wed, Oct 23, 2019, 8:43 AM UTC
HN karma
1
Public activity
3 items

About imstuff

No profile information was provided.

Recent public activity

  1. comment
    Comment #21646045

    It seems it's only for Azure: https://docs.microsoft.com/en-us/visualstudio/debugger/debug...

  2. 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…

  3. 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:…