This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
// STLport regression testsuite component.
// To compile as a separate example, please #define MAIN.
#include <iostream>
#include <algorithm>
#include <functional>
#include <iterator>
#ifdef MAIN
#define istmit1_test main
#endif
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
using namespace std;
#endif
int istmit1_test(int, char**)
{
cout<<"Results of istmit1_test:"<<endl;
char buffer [100];
int i = 0;
cin.unsetf(ios::skipws); // Disable white-space skipping.
cout << "Please enter a string: ";
#ifndef _STLP_LIMITED_DEFAULT_TEMPLATES
istream_iterator<char> s(cin),meos; //*TY 01/10/1999 - added eos()
#else
istream_iterator<char, ptrdiff_t> s(cin),meos; //*TY 01/10/1999 - added eos()
#endif
while(!(s == meos) &&
//*TY 01/10/1999 - added end of stream check
// NOTE operator!= should not be used here ifndef __STL_FUNCTION_TMPL_PARTIAL_ORDER
*s != '\n' &&
(i < sizeof(buffer)/sizeof(buffer[0])) ) //*TY 07/28/98 - added index check
buffer[i++] = *s++;
buffer[i] = '\0'; // Null terminate buffer.
cout << "read " << buffer << endl;
return 0;
}