You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "Roy T. Fielding" <fi...@kiwi.ICS.UCI.EDU> on 1999/10/22 13:04:55 UTC

Re: cvs commit: apache-2.0/src/lib/apr/network_io/beos networkio.h

>  +
>  +/* The definition of isascii was missed from the PowerPC ctype.h
>  + *
>  + * It will be included in the next release, but until then... */
>  +#if __POWER_PC__
>  +#define iasascii(c) (((c) & ~0x7f)==0)
>  +#endif
>  +

I doubt that is what you wanted -- iasascii?

....Roy

Re: cvs commit: apache-2.0/src/lib/apr/network_io/beos networkio.h

Posted by David Reid <ab...@dial.pipex.com>.
Whoops, thanks Roy.  I'll correct it at once!

<blushes>

----- Original Message -----
From: Roy T. Fielding <fi...@kiwi.ICS.UCI.EDU>
To: <ne...@apache.org>
Sent: 22 October 1999 12:04
Subject: Re: cvs commit: apache-2.0/src/lib/apr/network_io/beos networkio.h


> >  +
> >  +/* The definition of isascii was missed from the PowerPC ctype.h
> >  + *
> >  + * It will be included in the next release, but until then... */
> >  +#if __POWER_PC__
> >  +#define iasascii(c) (((c) & ~0x7f)==0)
> >  +#endif
> >  +
>
> I doubt that is what you wanted -- iasascii?
>
> ....Roy