Re:an extended printf function
Posted: Mon Mar 29, 2004 4:58 pm
Pype.Clicker, i'm assuming that this page is yours due to the reference to the Clicker32 microkernel...
http://www.run.montefiore.ulg.ac.be/~ma ... g-f00.html
just wanted to inform you of a mistake..
first code example contains this:
you are assigning a int ** (pointer to a integer array..) to an int *
it really should be:
otherwise cool stuff
proxy
http://www.run.montefiore.ulg.ac.be/~ma ... g-f00.html
just wanted to inform you of a mistake..
first code example contains this:
Code: Select all
int iarray[]={1,2,3,4};
int* iaptr=&iarray;
it really should be:
Code: Select all
int iarray[]={1,2,3,4};
int* iaptr=iarray;
proxy