Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
436 views

Variant datatype library for C

Is there a decent open-source C library for storing and manipulating dynamically-typed variables (a.k.a. variants)? I'm primarily interested in atomic values (int8, int16, int32, uint, strings, ...
2
votes
1answer
337 views

Which library to use for C data structures with GCC

I'm about to start a new project in C. I'm currently investigating a library for C data structures. I've found plenty of them. But which one would you recommend? I'm currently considering to use gdsl ...
1
vote
1answer
128 views

getopt_long() function with custom argc and argv

I am having trouble using getopt_long() function with custom argc and argv. I receive my arguments in a string instead of the real command line args. Then a new_argc and new_argv was built from this ...
0
votes
1answer
50 views

Supplying different library/function at link time

If I want to clone a library and change just one function, say memcpy or memmove, and have an already built executable link to it for debugging/exploration purposes, what is the proper way to do this? ...