* hb_chapter_close ********************************************************************** * *********************************************************************/
| 5672 | * |
| 5673 | *********************************************************************/ |
| 5674 | void hb_chapter_close(hb_chapter_t **chap) |
| 5675 | { |
| 5676 | if ( chap && *chap ) |
| 5677 | { |
| 5678 | free((*chap)->title); |
| 5679 | free(*chap); |
| 5680 | *chap = NULL; |
| 5681 | } |
| 5682 | } |
| 5683 | |
| 5684 | /********************************************************************** |
| 5685 | * hb_chapter_set_title |
no outgoing calls
no test coverage detected