Subject: Re: Type coersion long->int ?
To: Patrick Welche <prlw1@newn.cam.ac.uk>
From: Ted Lemon <mellon@isc.org>
List: current-users
Date: 02/02/2000 13:24:57
> 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.

			       _MelloN_