libogg is giving me "unsigned char*" buffers that I need to send to an ofstream.
PROBLEM: <ofstream> takes char*, not unsigned char*.
Can I just use reinterpret_cast<char*> on these things? That seems like a really, really bad idea.
EDIT: How the hell does a signed char map to the extended ASCII table, anyway?
EDIT: Who the fuck thought of this?!


