"Phong Nguyen" <[EMAIL PROTECTED]> wrote in message news:74927@palm-dev-forum... > > I am tired of using the built-in functions in > CodeWarrior. The book said that StrPrintF is > equivalent to sprintf and that really screw me up when > trying to port some of the existing and working codes > in other platform into CodeWarrior. What I have had to > do is rewriting several sections in the codes. > Hope that CodeWarrior will support standard C library > in the future.
CodeWarrior for Palm OS V8 does implement a substantial subset of the standard C library. It has an even higher percentage of the standard C++ library implemented, including formatted output via the stringstream class. Right now, we've considered doing sprintf (and its better brother, snprintf), but the current implementation in MSL is tied to fprintf, and we don't want people using this and pulling in far more library than they expected. For more on my implementation policy, see http://www.palmoswerks.com/2002/01/16. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
