Page 1 of 1

u8[] vs unsigned char[]

Posted: Tue May 24, 2011 1:15 pm
by relminator
Is there any difference between these two lines?

Code: Select all

unsigned char foo[32768];
and

Code: Select all

u8 foo[32768];
Thanks!

Re: u8[] vs unsigned char[]

Posted: Tue May 24, 2011 2:06 pm
by elhobbs
on the ds they are the same.

Re: u8[] vs unsigned char[]

Posted: Tue May 24, 2011 2:18 pm
by relminator
Thanks.