mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-30 16:30:59 +00:00
f44f16d59a
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
36 lines
862 B
C++
36 lines
862 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include <iterator>
|
|
#include <functional>
|
|
|
|
#ifdef MAIN
|
|
#define trnsfrm2_test main
|
|
#endif
|
|
static char map_char(char a_, int b_)
|
|
{
|
|
return char(a_ + b_);
|
|
}
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
int trnsfrm2_test(int, char**)
|
|
{
|
|
cout<<"Results of trnsfrm2_test:"<<endl;
|
|
|
|
#if defined (__MVS__)
|
|
int trans[] = {-11, 4, -6, -6, -18, 0, 18, -14, 6, 0, -1, -59};
|
|
#else
|
|
int trans[] = {-4, 4, -6, -6, -10, 0, 10, -6, 6, 0, -1, -77};
|
|
#endif
|
|
char n[] = "Larry Mullen";
|
|
const unsigned count = ::strlen(n);
|
|
ostream_iterator <char> iter(cout);
|
|
transform(n, n + count, trans, iter, map_char);
|
|
cout << endl;
|
|
return 0;
|
|
}
|