Skip to content

Commit

Permalink
took account of y with dieresis
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHedden committed Oct 9, 2021
1 parent b3150d0 commit d9b19de
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions toloweru.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ unsigned int toloweru(unsigned int u) {
} /* else {
return(u); // already uc
} */
if (u == 0xC5B8) // uc Latin y with dieresis
return(0xC3BF); // lc Latin y with dieresis
if (u == 0xC784)
return(0xC785);
if (u == 0xC785)
Expand Down

0 comments on commit d9b19de

Please sign in to comment.