none wrote:
> btw. printing size_t and off_t is still not portable
> printf("size=%zu offset=%16jx"\n",size_t_var,off_t_var);
I've never seen the 'z' flag before.. is that a windows thing?
glibc printf(3) makes no mention of it..
I guess maybe that's the point you're making, it being not portable ;)
If I'm worried about portability, I'll let iostream handle it:
cout << "size=" << size_t_var << endl;
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev