~ubuntu-branches/ubuntu/karmic/enchant/karmic

« back to all changes in this revision

Viewing changes to src/myspell/csutil.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2006-10-16 02:29:42 UTC
  • mfrom: (1.1.5 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20061016022942-ui6ny8f2q8ekxt9j
Tags: 1.3.0-2
Install enchant.ordering - closes: #393147

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
// parse into tokens with char delimiter
38
38
char * mystrrep(char *, const char *, const char *);
39
39
 
40
 
// is one string a leading subset of another
41
 
int    isSubset(const char * s1, const char * s2);
42
 
 
43
 
// is one reverse string a leading subset of the end of another   
44
 
int    isRevSubset(const char * s1, const char * s2, int len);
45
 
 
46
40
// append s to ends of every lines in text
47
41
void strlinecat(char * lines, const char * s);
48
42