| 94 | } |
| 95 | |
| 96 | SIValue SI_DuplicateStringVal(const char *s) { |
| 97 | return (SIValue) { |
| 98 | .stringval = rm_strdup(s), .type = T_STRING, .allocation = M_SELF |
| 99 | }; |
| 100 | } |
| 101 | |
| 102 | SIValue SI_ConstStringVal(const char *s) { |
| 103 | return (SIValue) { |
no test coverage detected