PWB Extensions Help (ext.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
atou
                                             Up Contents Index Back
─────PWB Extensions─────────────────────────────────────────────────────────
 
  Syntax:  unsigned atou( const char far *String );
 
  Returns: The decimal value given by <String>, or 0 if the string
           cannot be converted.
 
     The atou function converts the decimal number in <String> to an
     unsigned integer. Leading white space is skipped. No sign is
     allowed.
 
     If a conversion cannot be made, the function returns 0. Otherwise
     it returns the number converted from the longest continuous string
     of digits. Overflow is not detected, and the rules of modulus
     arithmetic apply to the return value if overflow occurs.
                                    -♦-