Searched defs:hyphword (Results 1 - 2 of 2) sorted by relevance

/external/hyphenation/
H A Dexample.c68 char *hyphword; local
168 hyphword = (char *) malloc(k+1+nHyphCount);
171 hyphword[j++] = buf[i];
173 hyphword[j++] = '-';
176 hyphword[j] = '\0';
177 fprintf(stdout,"%s\n",hyphword);
179 free(hyphword);
H A Dhyphen.c1025 /* get the word with all possible hyphenations (output: hyphword) */
1027 char * hyphword, char *** rep, int ** pos, int ** cut)
1032 hyphword[j] = word[i];
1034 strcpy(hyphword + j - (*pos)[i] + 1, (*rep)[i]);
1037 } else hyphword[++j] = '=';
1038 } else hyphword[j] = word[i];
1040 hyphword[j] = '\0';
1047 char *hyphword, char *** rep, int ** pos, int ** cut)
1055 if (hyphword) hnj_hyphen_hyphword(word, word_size, hyphens, hyphword, re
1026 hnj_hyphen_hyphword(const char * word, int l, const char * hyphens, char * hyphword, char *** rep, int ** pos, int ** cut) argument
1045 hnj_hyphen_hyphenate2(HyphenDict *dict, const char *word, int word_size, char * hyphens, char *hyphword, char *** rep, int ** pos, int ** cut) argument
1061 hnj_hyphen_hyphenate3(HyphenDict *dict, const char *word, int word_size, char * hyphens, char *hyphword, char *** rep, int ** pos, int ** cut, int lhmin, int rhmin, int clhmin, int crhmin) argument
[all...]

Completed in 84 milliseconds