Home | History | Annotate | Download | only in hyphenation

Lines Matching refs:hyphens

66     char *hyphens;
130 hyphens = (char *)malloc(k+5);
149 if ((!optd && hnj_hyphen_hyphenate(dict, lcword, n-1, hyphens)) ||
150 (optd && hnj_hyphen_hyphenate2(dict, lcword, n-1, hyphens, hword, &rep, &pos, &cut))) {
151 free(hyphens);
158 /* now backfill hyphens[] for any removed periods */
159 for (c = n; c < k; c++) hyphens[c] = '0';
160 hyphens[k] = '\0';
163 /* count the hyphens and allocate space for the new hypehanted string */
166 if (hyphens[i]&1)
172 if (hyphens[i]&1) {
182 if (optdd) single_hyphenations(lcword, hyphens, rep, pos, cut, dict->utf8);
192 free(hyphens);