Reputation: 21345
Ok. I need to implement methods like these. Is there a way to view the source code online for methods like these, so I can just add them into my own .h and .cpp files? will this work and where can I see the source.
Upvotes: 1
Views: 1301
Reputation: 9404
These functions are part of glibc, you can find it here http://www.gnu.org/s/libc/ . You can download release version via ftp or get current version via git (you can find links on html url above), as I know there is no access to code via web to separate files, but may be, may be codesearch http://www.google.com/codesearch, can show them, but I never try.
Upvotes: 1