123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #include "slatec-internal.hpp"
- integer j4save_(integer const *iwhich, integer const *ivalue, logical const *iset)
- {
-
- static integer iparam[9] = { 0,2,0,10,1,0,0,0,0 };
-
- integer ret_val;
- ret_val = iparam[(0 + (0 + (*iwhich - 1 << 2))) / 4];
- if (*iset) {
- iparam[*iwhich - 1] = *ivalue;
- }
- return ret_val;
- }
|