Category : C++ Source Code
Archive   : VCCRT1.ZIP
Filename : ISTRINT.CXX

 
Output of file : ISTRINT.CXX contained in archive : VCCRT1.ZIP
/***
* istrint.cxx - definitions for istream class operaotor>>(int) member functions
*
* Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Definitions of operator>>(int) member function(s) for istream class.
* [AT&T C++]
*
*******************************************************************************/

#include
#include
#include
#include
#pragma hdrstop

// CONSIDER: validify all this maximum length
#define MAXLONGSIZ 16

/***
*istream& istream::operator>>(int& n) - extract int
*
*Purpose:
* Extract int value from stream
*
*Entry:
* n = value to update
*
*Exit:
* n updated, or ios::failbit & n=INT_MAX/INT_MIN on overflow/underflow
*
*Exceptions:
* Stream error on entry or value out of range
*
*******************************************************************************/
istream& istream::operator>>(int& n)
{
_WINSTATIC char ibuffer[MAXLONGSIZ];
long value;
char ** endptr = (char**)NULL;
if (ipfx(0))
{
value = strtol(ibuffer, endptr, getint(ibuffer));
if (value>INT_MAX)
{
n = INT_MAX;
state |= ios::failbit;
}
else if (value {
n = INT_MIN;
state |= ios::failbit;
}
else
n = (int) value;
#if 0
if (**endptr)
{
// UNDONE: put back any unread characters, if possible
}
#endif
isfx();
}
return *this;
}


  3 Responses to “Category : C++ Source Code
Archive   : VCCRT1.ZIP
Filename : ISTRINT.CXX

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/