returns the subtracting given values. */
| 26 | |
| 27 | /* returns the subtracting given values. */ |
| 28 | SIValue AR_SUB(SIValue *argv, int argc, void *private_data) { |
| 29 | if(SIValue_IsNull(argv[0]) || SIValue_IsNull(argv[1])) return SI_NullVal(); |
| 30 | return SIValue_Subtract(argv[0], argv[1]); |
| 31 | } |
| 32 | |
| 33 | /* returns the multiplication of given values. */ |
| 34 | SIValue AR_MUL(SIValue *argv, int argc, void *private_data) { |
nothing calls this directly
no test coverage detected