#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <algo.h>
#include <iostream.h>

#ifdef MAIN
#define mismtch0_test main
#endif
#endif
int mismtch0_test(int, char**)
{
  cout<<"Results of mismtch0_test:"<<endl;
#ifndef ACORN_CFRONT
int n1[5] = { 1, 2, 3, 4, 5 };
int n2[5] = { 1, 2, 3, 4, 5 };
int n3[5] = { 1, 2, 3, 2, 1 };
#else
static int n1[5] = { 1, 2, 3, 4, 5 };
static int n2[5] = { 1, 2, 3, 4, 5 };
static int n3[5] = { 1, 2, 3, 2, 1 };
#endif

  pair <int*, int*> result = mismatch(n1, n1 + 5, n2);
  if(result.first ==(n1 + 5) && result.second ==(n2 + 5))
    cout << "n1 and n2 are the same" << endl;
  else
    cout << "Mismatch at offset: " <<(result.first - n1) << endl;
  result = mismatch(n1, n1 + 5, n3);
  if(result.first ==(n1 + 5) && result.second ==(n3 + 5))
    cout << "n1 and n3 are the same" << endl;
  else
    cout << "Mismatch at offset: " <<(result.first - n1) << endl;
  return 0;
}
