empty.c 119 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 #include "cbuf.h" void cbufEmpty(Cbuf this) { this->bused = 0; this->read = this->write; } // vim: set ts=4 sw=4: