mptest-1.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * Simple test driver for MPI library
  3.  *
  4.  * Test 1: Simple input test (drives single-digit multiply and add,
  5.  *         as well as I/O routines)
  6.  *
  7.  * The contents of this file are subject to the Mozilla Public
  8.  * License Version 1.1 (the "License"); you may not use this file
  9.  * except in compliance with the License. You may obtain a copy of
  10.  * the License at http://www.mozilla.org/MPL/
  11.  *
  12.  * Software distributed under the License is distributed on an "AS
  13.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  14.  * implied. See the License for the specific language governing
  15.  * rights and limitations under the License.
  16.  *
  17.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  18.  * library.
  19.  *
  20.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  21.  * Portions created by Michael J. Fromberger are 
  22.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  23.  * All Rights Reserved.
  24.  *
  25.  * Contributor(s):
  26.  *
  27.  * Alternatively, the contents of this file may be used under the
  28.  * terms of the GNU General Public License Version 2 or later (the
  29.  * "GPL"), in which case the provisions of the GPL are applicable
  30.  * instead of those above.  If you wish to allow use of your
  31.  * version of this file only under the terms of the GPL and not to
  32.  * allow others to use your version of this file under the MPL,
  33.  * indicate your decision by deleting the provisions above and
  34.  * replace them with the notice and other provisions required by
  35.  * the GPL.  If you do not delete the provisions above, a recipient
  36.  * may use your version of this file under either the MPL or the GPL.
  37.  *
  38.  *  $Id: mptest-1.c,v 1.1 2000/07/14 00:44:41 nelsonb%netscape.com Exp $
  39.  */
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include <string.h>
  43. #include <ctype.h>
  44. #include <limits.h>
  45. #ifdef MAC_CW_SIOUX
  46. #include <console.h>
  47. #endif
  48. #include "mpi.h"
  49. int main(int argc, char *argv[])
  50. {
  51.   int    ix;
  52.   mp_int mp;
  53. #ifdef MAC_CW_SIOUX
  54.   argc = ccommand(&argv);
  55. #endif
  56.   mp_init(&mp);
  57.   
  58.   for(ix = 1; ix < argc; ix++) {
  59.     mp_read_radix(&mp, argv[ix], 10);
  60.     mp_print(&mp, stdout);
  61.     fputc('n', stdout);
  62.   }
  63.   mp_clear(&mp);
  64.   return 0;
  65. }