returns the multiplication of given values. */
| 32 | |
| 33 | /* returns the multiplication of given values. */ |
| 34 | SIValue AR_MUL(SIValue *argv, int argc, void *private_data) { |
| 35 | if(SIValue_IsNull(argv[0]) || SIValue_IsNull(argv[1])) return SI_NullVal(); |
| 36 | return SIValue_Multiply(argv[0], argv[1]); |
| 37 | } |
| 38 | |
| 39 | /* returns the division of given values. */ |
| 40 | SIValue AR_DIV(SIValue *argv, int argc, void *private_data) { |
nothing calls this directly
no test coverage detected