Closed brentp closed 5 years ago
I think @jyapayne dealt with static inline
recently in his [libnx] (https://github.com/jyapayne/nim-libnx) wrapper.
I've also find a header only wrapper in nimfuzzy if that helps too.
hi, thanks for the response. I had a look at those, but don't see what to change. I put what I have here: https://github.com/brentp/variantkey-nim any ideas?
I only need 3 functions in this entire library so I just moved the .h to .c, exported the functions needed to a new .h and used c2nim. I htink this is the simplest solution for now (and the only one I could get to work).
I am trying to use a header-only library (https://github.com/Genomicsplc/variantkey/blob/master/c/src/variantkey/variantkey.h) . I have this cfg:
it seems that nimgen is going in and commenting out the actual implementation in the header files. Is there a way to use this with header-only stuff? thanks.