Server 0.0.1
HTTP/REST server implementation

src/cbuf/empty.c

Go to the documentation of this file.
00001 
00023 #include "cbuf.h"
00024 
00025 void
00026 cbufEmpty(Cbuf this)
00027 {
00028         this->bused = 0;
00029         this->read  = this->write;
00030 }
00031 
00032 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines