Rev 13757 | Rev 14873 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 13757 | Rev 14712 | ||
---|---|---|---|
Line 112... | Line 112... | ||
112 | int check_parentheses(char *p, int style); |
112 | int check_parentheses(char *p, int style); |
113 | void nospace(char *p); /* collapses all space characters in string. */ |
113 | void nospace(char *p); /* collapses all space characters in string. */ |
114 | void singlespace(char *p); /* change all spaces into ' ', and collapse multiple occurences */ |
114 | void singlespace(char *p); /* change all spaces into ' ', and collapse multiple occurences */ |
115 | void deaccent(char *p); /* fold accented letters to unaccented */ |
115 | void deaccent(char *p); /* fold accented letters to unaccented */ |
116 | void reaccent(char *p); /* compose accented letters using symbols */ |
116 | void reaccent(char *p); /* compose accented letters using symbols */ |
- | 117 | int mystrcmp (char*p1, char*p2); /* strip accents and case before comparaison */ |
|
- | 118 | ||
117 | /* modify a string. Bufferlen must be at least MAX_LINELEN */ |
119 | /* modify a string. Bufferlen must be at least MAX_LINELEN */ |
118 | extern void (*string_modify)(char *start, char *bad_beg, char *bad_end, char *good,...); |
120 | extern void (*string_modify)(char *start, char *bad_beg, char *bad_end, char *good,...); |
119 | void string_modify1(char *start, char *bad_beg, char *bad_end, char *good,...); |
121 | void string_modify1(char *start, char *bad_beg, char *bad_end, char *good,...); |
120 | void string_modify2(char *start, char *bad_beg, char *bad_end, char *good,...); |
122 | void string_modify2(char *start, char *bad_beg, char *bad_end, char *good,...); |
121 | 123 |