ns/releases/valve/source/stlport/test/regression/trnsfrm2.cpp
puzl f44f16d59a made a copy
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-06-08 18:52:38 +00:00

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;
}