Thomas Hruska <[EMAIL PROTECTED]> wrote: > Paul David wrote: > > It's my understanding that sprintf() converts numbers into > > strings (correct me if i'm wrong) I need to convert a > > string into a number > > ANSI: strtol() > Non-ANSI: atoi()/atol()
Both atoi() and atol() are standard C functions. Perhaps you're thinking of itoa()? -- Peter
