an extended printf function

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
proxy

Re:an extended printf function

Post by proxy »

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:

Code: Select all

int iarray[]={1,2,3,4};
int* iaptr=&iarray;
you are assigning a int ** (pointer to a integer array..) to an int *

it really should be:

Code: Select all

int iarray[]={1,2,3,4};
int* iaptr=iarray;
otherwise cool stuff :)

proxy
Post Reply