1 1.1 mrg /* mpz expression evaluation, simple part */ 2 1.1 mrg 3 1.1 mrg /* 4 1.1 mrg Copyright 2000, 2001 Free Software Foundation, Inc. 5 1.1 mrg 6 1.1 mrg This file is part of the GNU MP Library. 7 1.1 mrg 8 1.1 mrg The GNU MP Library is free software; you can redistribute it and/or modify 9 1.1.1.2 mrg it under the terms of either: 10 1.1.1.2 mrg 11 1.1.1.2 mrg * the GNU Lesser General Public License as published by the Free 12 1.1.1.2 mrg Software Foundation; either version 3 of the License, or (at your 13 1.1.1.2 mrg option) any later version. 14 1.1.1.2 mrg 15 1.1.1.2 mrg or 16 1.1.1.2 mrg 17 1.1.1.2 mrg * the GNU General Public License as published by the Free Software 18 1.1.1.2 mrg Foundation; either version 2 of the License, or (at your option) any 19 1.1.1.2 mrg later version. 20 1.1.1.2 mrg 21 1.1.1.2 mrg or both in parallel, as here. 22 1.1 mrg 23 1.1 mrg The GNU MP Library is distributed in the hope that it will be useful, but 24 1.1 mrg WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 25 1.1.1.2 mrg or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 26 1.1.1.2 mrg for more details. 27 1.1 mrg 28 1.1.1.2 mrg You should have received copies of the GNU General Public License and the 29 1.1.1.2 mrg GNU Lesser General Public License along with the GNU MP Library. If not, 30 1.1.1.2 mrg see https://www.gnu.org/licenses/. */ 31 1.1 mrg 32 1.1 mrg #include <stdio.h> 33 1.1 mrg #include "gmp.h" 34 1.1 mrg #include "expr-impl.h" 35 1.1 mrg 36 1.1 mrg 37 1.1 mrg int 38 1.1 mrg mpexpr_va_to_var (void *var[], va_list ap) 39 1.1 mrg { 40 1.1 mrg int i = 0; 41 1.1 mrg void *v; 42 1.1 mrg 43 1.1 mrg for (;;) 44 1.1 mrg { 45 1.1 mrg v = va_arg (ap, void *); 46 1.1 mrg if (v == NULL) 47 1.1 mrg break; 48 1.1 mrg if (i >= MPEXPR_VARIABLES) 49 1.1 mrg return MPEXPR_RESULT_BAD_VARIABLE; 50 1.1 mrg var[i++] = v; 51 1.1 mrg } 52 1.1 mrg 53 1.1 mrg while (i < MPEXPR_VARIABLES) 54 1.1 mrg var[i++] = NULL; 55 1.1 mrg 56 1.1 mrg return MPEXPR_RESULT_OK; 57 1.1 mrg } 58