Re: RESTful API's - Easy way to interact?
Re: RESTful API's - Easy way to interact?
- Subject: Re: RESTful API's - Easy way to interact?
- From: Randall Meadows <email@hidden>
- Date: Wed, 4 Jun 2008 19:06:00 -0600
On Jun 4, 2008, at 6:59 PM, Jeremy wrote:
Joseph,
I have downloaded and used those files (hopefully can get them to
work) but upon build (not using them yet) I get this error:
for( int i=0; i<length; i+=1 )
X /Users/Jeremy/Documents/Apps/Unfuddler2/Base64.m:101: error: 'for'
loop initial declaration used outside C99 mode
dst += sprintf(dst,"X",*(bytes++));
Any Idea how to fix this?
Two ways:
1) int i;
for(i=0; i<length; i+=1 )
B) Adjust the "C Language Dialect" project setting to include C99.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden