コード例 #1
0
ファイル: bit.c プロジェクト: mahdiz/mpclib
int
main (int argc, char *argv[])
{
  tests_start ();

  check_tstbit ();
  check_random (argc, argv);
  check_single ();

  tests_end ();
  exit (0);
}
コード例 #2
0
ファイル: bit.c プロジェクト: RodneyBates/M3Devel
int
main (int argc, char *argv[])
{
  tests_start ();
  mp_trace_base = -16;

  check_clr_extend ();
  check_com_negs ();
  check_tstbit ();
  check_random (argc, argv);
  check_single ();

  tests_end ();
  exit (0);
}