On Wed, Feb 02, 2000 at 01:24:57PM -0500, Ted Lemon wrote: > > > The fault happens at if(isalpha(c)). Am I actually doing something illegal, > > or is there a problem here? > > You should say (isascii (c) && isalpha (c)). isalpha is only defined > for values zero through 128. I would never have guessed! Thank you, Patrick