[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: C programming langauge on Apple II



Eric Shepherd wrote:
> On 2006-08-21 02:03:15 -0400, "PZ" <skierpaul@yahoo.com> said:
>
> > Likewise there is Hyper C, available via some of the FTP sites, but
> > never having used it I can't comment other than to state its existence.
>
> I didn't mention Hyper C because I was only pointing out fully-featured
> C implementations.  Hyper C is a subset of C.

The WDC's cross compilers claim to be ANSI compliant.

cc65 most certainly isn't, lacking floating point types, bit fields,
and the ability to pass structures to functions.

Both the 'native' systems have limitations, being k&r syntax and lack
of some features. The most noticable issue is the lack of function
prototypes, but once that's taken care of the only other thing I've
found necessary when getting something to build was throwing in a
#DEFINE for void* (or replacing all occurances of it with char*)

Matt