16 lines
155 B
C++
16 lines
155 B
C++
|
#include <incstr.h>
|
||
|
|
||
|
istream & eatwhite(istream & i)
|
||
|
{
|
||
|
char c;
|
||
|
while (i.get(c))
|
||
|
{
|
||
|
if (!isspace(c))
|
||
|
{
|
||
|
i.putback(c);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
return i;
|
||
|
}
|