My advice on implementing stuff in C:
My advice on implementing stuff in C:
Posted Oct 19, 2010 11:30 UTC (Tue) by nix (subscriber, #2304)In reply to: My advice on implementing stuff in C: by cmccabe
Parent article: Russell: On C Library Implementation
C also has a built-in way of loading code at runtime in the form of shared libraries. C even has the ability to run code when a shared library is loaded, and when it is unloaded.No it doesn't. All C has is atexit(). The features you mention are POSIX, not C.
