Androider
Androider

Reputation: 21345

Implementing my own GNU stricmp, wcsicmp etc for wchar* stuff

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

Answers (1)

fghj
fghj

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

Related Questions