// -*- Mode: C++ -*-

#include <iostream.h>
#include <ht/longchar.h>

main ()
{
  longchar *a= Lstrdup ("hsd");
  longchar *b= Lstrdup ("h");
  cout << strncmp (a, b, 1) << endl;
}
