| 1467 | */ |
| 1468 | |
| 1469 | AP_DECLARE_NONSTD(const char *) ap_set_string_slot(cmd_parms *cmd, |
| 1470 | void *struct_ptr, |
| 1471 | const char *arg) |
| 1472 | { |
| 1473 | int offset = (int)(long)cmd->info; |
| 1474 | |
| 1475 | *(const char **)((char *)struct_ptr + offset) = arg; |
| 1476 | |
| 1477 | return NULL; |
| 1478 | } |
| 1479 | |
| 1480 | AP_DECLARE_NONSTD(const char *) ap_set_int_slot(cmd_parms *cmd, |
| 1481 | void *struct_ptr, |
no outgoing calls
no test coverage detected