What do you want in the next C standard? For me it's namespaces, damn they make libraries simple.
Name:
Anonymous2009-11-12 16:39
>>112
C does not support name-mangling, all symbol names are exported as they appear in the source(with added underscore). This means you'll never see namespaces or classes or function overloading in C. If you really need those features, use C++.