Subversion Repositories wimsdev

Rev

Rev 10 | Rev 7676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 3718
Line 51... Line 51...
51
    char *p;
51
    char *p;
52
    deaccent(filebuf);
52
    deaccent(filebuf);
53
    for(p=filebuf; *p; p++) *p=tolower(*p);
53
    for(p=filebuf; *p; p++) *p=tolower(*p);
54
    for(p=strpbrk(filebuf,"'-"); p!=NULL; p=strpbrk(p+1,"'-")) *p=' ';
54
    for(p=strpbrk(filebuf,"'-"); p!=NULL; p=strpbrk(p+1,"'-")) *p=' ';
55
    for(p=strstr(filebuf," "); p!=NULL; p=strstr(p+1," ")) {
55
    for(p=strstr(filebuf," "); p!=NULL; p=strstr(p+1," ")) {
56
        *p=' '; strcpy(p+1,p+6);
56
        *p=' '; ovlstrcpy(p+1,p+6);
57
    }
57
    }
58
}
58
}
59
 
59
 
60
void output(void)
60
void output(void)
61
{
61
{