Linked by MOS6510 on Thu 10th Jan 2013 23:25 UTC
Thread beginning with comment 548640
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
Of course, it adds that much more complexity
I find I have to write wrappers around a lot of library functions in any language. Maybe except for Python, with it's "batteries included" principle.
The C++ STL has a boatload of generic algorithms that provide typed sorting that qsort lacks.
http://www.cplusplus.com/reference/algorithm/
Templates keeps all the complexity in compile time.




Member since:
2006-05-20
That sounds obvious now that you mention it, but in over 20 years of C programming that never occurred to me, nor have I ever seen anybody do it. Of course, it adds that much more complexity, but it still sounds like a damn good idea.