The '+' operator is overloaded to perform string concatenation * as well as arithmetic addition. */
| 21 | /* The '+' operator is overloaded to perform string concatenation |
| 22 | * as well as arithmetic addition. */ |
| 23 | SIValue AR_ADD(SIValue *argv, int argc, void *private_data) { |
| 24 | return SIValue_Add(argv[0], argv[1]); |
| 25 | } |
| 26 | |
| 27 | /* returns the subtracting given values. */ |
| 28 | SIValue AR_SUB(SIValue *argv, int argc, void *private_data) { |
nothing calls this directly
no test coverage detected