blob: a464dedbb76c882c4ea111e1b1ed6a5789fc602a (
plain) (
tree)
|
|
/***
* istrusht.cxx - definitions for istream class operator>>(unsigned short) funct
*
* Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Definitions of operator>>(unsigned short) member function for istream
* class.
* [AT&T C++]
*
*Revision History:
* 09-26-91 KRS Created. Split off from istream.cxx for granularity.
* 01-06-92 KRS Improved error handling.
* 12-30-92 KRS Fix indirection problem with **endptr.
*
*******************************************************************************/
#include <cruntime.h>
#include <internal.h>
#include <stdlib.h>
#include <limits.h>
#include <errno.h>
#include <iostream.h>
#pragma hdrstop
// CONSIDER: validify this maximum length
#define MAXLONGSIZ 16
/***
*istream& istream::operator>>(unsigned short& n) - extract unsigned short
*
*Purpose:
* Extract unsigned short value from stream
* Valid range is SHRT_MIN to USHRT_MAX.
*
*Entry:
* n = value to update
*
*Exit:
* n updated, or ios::failbit and n=USHRT_MAX if error
*
*Exceptions:
* Stream error on entry or value out of range
*
*******************************************************************************/
istream& istream::operator>>(unsigned short& n)
{
_WINSTATIC char ibuffer[MAXLONGSIZ];
unsigned long value;
char ** endptr = (char**)NULL;
if (ipfx(0))
{
value = strtoul(ibuffer, endptr, getint(ibuffer));
// CONSIDER: all but the first check is to emulate strtoul behavior
if (((value>USHRT_MAX) && (value<=(ULONG_MAX-(-SHRT_MIN))))
|| ((value==ULONG_MAX) && (errno==ERANGE)))
{
n = USHRT_MAX;
state |= ios::failbit;
}
else
n = (unsigned short) value;
#if 0
if (**endptr)
{
//UNDONE: put back any unread characters, if possible
}
#endif
isfx();
}
return *this;
}
|