| 17 | #include "repository.h" |
| 18 | |
| 19 | void credential_init(struct credential *c) |
| 20 | { |
| 21 | struct credential blank = CREDENTIAL_INIT; |
| 22 | memcpy(c, &blank, sizeof(*c)); |
| 23 | } |
| 24 | |
| 25 | void credential_clear(struct credential *c) |
| 26 | { |
no outgoing calls
no test coverage detected