This commit is contained in:
Igor Pavlov
2023-12-22 17:17:05 +00:00
committed by Kornel
parent ec44a8a070
commit a36c48cece
954 changed files with 42199 additions and 25482 deletions

View File

@@ -14,10 +14,12 @@
// #define kReadErrorMessage "Error reading input stream"
// #define kIllegalCharMessage "Illegal zero character in input stream"
#define kFileOpenMode TEXT("r")
CStdInStream g_StdIn(stdin);
/*
#define kFileOpenMode TEXT("r")
bool CStdInStream::Open(LPCTSTR fileName) throw()
{
Close();
@@ -39,6 +41,7 @@ bool CStdInStream::Close() throw()
_streamIsOpen = (fclose(_stream) != 0);
return !_streamIsOpen;
}
*/
bool CStdInStream::ScanAStringUntilNewLine(AString &s)
{