| 214 | } |
| 215 | |
| 216 | inline attribute_hidden const char* char_get_string_elt(SEXP s, R_xlen_t i){ |
| 217 | typedef const char* (*Fun)(SEXP, R_xlen_t); |
| 218 | static Fun fun = GET_CALLABLE("char_get_string_elt"); |
| 219 | return fun(s, i); |
| 220 | } |
| 221 | |
| 222 | inline attribute_hidden void set_string_elt(SEXP s, R_xlen_t i, SEXP v){ |
| 223 | typedef void (*Fun)(SEXP, R_xlen_t, SEXP); |
no outgoing calls
no test coverage detected