| 1903 | } |
| 1904 | |
| 1905 | static void psl_freewords (struct PSL_WORD **word, int n_words) { |
| 1906 | /* Free all the words and their texts */ |
| 1907 | int k; |
| 1908 | for (k = 0; k < n_words; k++) { |
| 1909 | PSL_free (word[k]->txt); |
| 1910 | PSL_free (word[k]); |
| 1911 | } |
| 1912 | } |
| 1913 | |
| 1914 | void psl_got_composite_fontswitch (struct PSL_CTRL *PSL, char *text) { |
| 1915 | /* If a composite character is made from two different fonts then we need to flag these. |
no outgoing calls
no test coverage detected