| 95 | } |
| 96 | |
| 97 | void db_bind_sha256(struct db_stmt *stmt, int pos, const struct sha256 *s) |
| 98 | { |
| 99 | db_bind_blob(stmt, pos, s->u.u8, sizeof(struct sha256)); |
| 100 | } |
| 101 | |
| 102 | void db_bind_sha256d(struct db_stmt *stmt, int pos, const struct sha256_double *s) |
| 103 | { |
no test coverage detected