> Anyone know a comprehensive place to get source code for standard C > library functions? I'm looking for sprintf() particularly. The > SPRINTF.C file installed as part of VC6 basically makes a call to > somewhere else for the bulk of its thing, I was kind of hoping for a > comprehensive function where the bulk of the workings was contained > right there within the function... a GNU public version, possibly? A > Google has just given a needle in a haystack, I've started wading > through but it's mostly references to /using/ sprintf()... ugh!
Also, if you would like to view the source code of this function implemented by another library, check out GNU's glibc. If you're looking into implementing such functionality for your own application, don't! Use vsprintf( ) instead. ------------- Ehsan Akhgari Farda Technology (http://www.farda-tech.com/) List Owner: [EMAIL PROTECTED] [ Email: [EMAIL PROTECTED] ] [ WWW: http://www.beginthread.com/Ehsan ] I've done the math enough to know the dangers of a second guessing... _______________________________________________ msvc mailing list [EMAIL PROTECTED] See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for subscription changes, and list archive.
