> >Anyway, I would like to know what the Palm cousins are for sscanf(), > >va_start(), and va_end(). I found va_list, and sprintf(), but I cannot find > >info on these other functions. If there are no direct cousins, how do > >programmers perform the tasks that these basic C functions normally provide? > >I need to parse a string. It should be as easy as just an sscanf() function > >call. > > vs_start, va_end, and va_list are defined by the compiler... your tool set > should have come with a stdarg.h header file. For CodeWarrior, its part of > the MSL library. This defines how the compiler handles variable argument > lists.
for prc-tools: #include <unix_stdarg.h> :P its hidden away inside the headers, dont include <stdarg.h> - it doesn't work as planned :) --- 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/
