blob: 0896a3e9d991af3ce160e16c84650c77a7099f4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/***
* istrchar.cxx - definitions for istream class operator>>(char&)
*
* Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Definitions of member function for istream operator>>(char&).
* [AT&T C++]
*
*Revision History:
* 09-23-91 KRS Created. Split out from istream.cxx for granularity.
*
*******************************************************************************/
#include <cruntime.h>
#include <internal.h>
#include <stdlib.h>
#include <iostream.h>
#pragma hdrstop
// CONSIDER: validify all these maximum lengths...
istream& istream::operator>>(char& c)
{
int tchar;
if (ipfx(0))
{
tchar=bp->sbumpc();
if (tchar==EOF)
{
state |= ios::eofbit|ios::badbit;
}
else
{
c = (char)tchar;
}
isfx();
}
return *this;
}
|