mirror of
https://github.com/ENSL/NS.git
synced 2024-11-28 07:12:15 +00:00
2f9f0c732e
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@277 67975925-1194-0748-b3d5-c16f83f1a3a1
32 lines
726 B
C++
32 lines
726 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#include <functional>
|
|
|
|
#ifdef MAIN
|
|
#define ptrbinf2_test main
|
|
#endif
|
|
static int sum(int x_, int y_)
|
|
{
|
|
return x_ + y_;
|
|
}
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
int ptrbinf2_test(int, char**)
|
|
{
|
|
cout<<"Results of ptrbinf2_test:"<<endl;
|
|
|
|
int input1 [4] = { 7, 2, 3, 5 };
|
|
int input2 [4] = { 1, 5, 5, 8 };
|
|
|
|
int output [4];
|
|
transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
|
|
for(int i = 0; i < 4; i++)
|
|
cout << output[i] << endl;
|
|
return 0;
|
|
}
|