Rev 7844 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 7844 | Rev 8086 | ||
---|---|---|---|
Line 97... | Line 97... | ||
97 | void nospace(char *p); /* collapses all space characters in string. */ |
97 | void nospace(char *p); /* collapses all space characters in string. */ |
98 | void singlespace(char *p); /* change all spaces into ' ', and collapse multiple occurences */ |
98 | void singlespace(char *p); /* change all spaces into ' ', and collapse multiple occurences */ |
99 | void deaccent(char *p); /* fold accented letters to unaccented */ |
99 | void deaccent(char *p); /* fold accented letters to unaccented */ |
100 | void reaccent(char *p); /* compose accented letters using symbols */ |
100 | void reaccent(char *p); /* compose accented letters using symbols */ |
101 | /* modify a string. Bufferlen must be at least MAX_LINELEN */ |
101 | /* modify a string. Bufferlen must be at least MAX_LINELEN */ |
102 | void |
102 | extern void (*string_modify)(char *start, char *bad_beg, char *bad_end, char *good,...); |
103 | long int filelength(char *fn,...); |
103 | long int filelength(char *fn,...); |
104 | int catfile(FILE *outf, char *fn,...); |
104 | int catfile(FILE *outf, char *fn,...); |
105 | char *fnd_position; |
105 | char *fnd_position; |
106 | char *fnd_nextpos; |
106 | char *fnd_nextpos; |
107 | 107 |