1 2 3 4 5 6 7 8 9 10 11 12
extern void foo (int *); static void bar (char *buf) { int a; foo (&a); while (a > 0) { *buf++ = '0'; a--; } }