Index: [thread] [date] [subject] [author]
  From: Philip K. Warren <pkw@acpub.duke.edu>
  To  : 
  Date: Sun, 31 Jan 1999 18:14:58 -0500

Re: learning some new tricks....

For atoi, just use the STL string class, and then use:

atoi(stringName.c_str());

It works just like the Astrachan one, just make sure you've got stdlib.h
included at the top of your file.

-- Philip


Index: [thread] [date] [subject] [author]