// STLport regression testsuite component. // To compile as a separate example, please #define MAIN. #include #include #include #include #include #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:"< iter(cout); transform(n, n + count, trans, iter, map_char); cout << endl; return 0; }