Wasting my time… Writing on a blog.

My page of ramblings

I still hate C strings February 25, 2009

Filed under: Uncategorized — jordoex @ 10:32 pm
Tags: , ,

I present: substrings

char str_pid[strlen(msg_in.buf)-2];
sprintf(str_pid, “%.*s\n”, strlen(msg_in.buf)-3, &msg_in.buf[3]);

It’s just so ugly, why can’t they at least provide a sane substring class

God bless C++.