| 94 | } |
| 95 | |
| 96 | int |
| 97 | db_set_variable(db_expr_t value) |
| 98 | { |
| 99 | struct db_variable *vp; |
| 100 | |
| 101 | if (!db_find_variable(&vp)) |
| 102 | return (0); |
| 103 | |
| 104 | return (db_write_variable(vp, value)); |
| 105 | } |
| 106 | |
| 107 | int |
| 108 | db_read_variable(struct db_variable *vp, db_expr_t *valuep) |
nothing calls this directly
no test coverage detected