...
Code Block | ||
---|---|---|
| ||
int buf[1024]; int *bbuf_ptr = buf; while (havedata() && bbuf_ptr < (buf+1024)) { *bbuf_ptr++ = parseint(getdata()); } |
...
...
Code Block | ||
---|---|---|
| ||
int buf[1024]; int *bbuf_ptr = buf; while (havedata() && bbuf_ptr < (buf+1024)) { *bbuf_ptr++ = parseint(getdata()); } |
...