> Thank you for the info. However, I know what the equivalent to sprintf is. > What I do not know is the equivalent to sscanf and if there is no > equivalent, then how do programmers parse a string?
the hard way :) but, if you want to have stuff like sscanf etc, you *can* link a m68k version of libc to your application (i believe). but, you may actually be better off just using what you have available. StrAToI is most commonly used to grab an integer (atoi replacement). you dont really need sscanf :) > Also, I am using va_start (typo?) and va_end and the specific error message > that I am getting on compile is: > > Error : the file 'stdarg.h' cannot be opened which compiler? > I have also tried to include StdIOPalm.h instead, but that header can be > found, but it says that va_start and va_end have no prototype. Should I be > messing around with the access pathes in my debug settings? Didn't think > that would be necessary if I haven't messed around with them before. i know va_start/va_end works here :) so, youve probably messed something up --- Aaron Ardiri [EMAIL PROTECTED] CEO - CTO +46 70 656 1143 Mobile Wizardry http://www.mobilewizardry.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
