|
Server 0.0.1
HTTP/REST server implementation
|
00001 00023 #include <string.h> 00024 00025 #include "cbuf.h" 00026 00027 char * 00028 cbufMemchr(Cbuf this, int c) 00029 { 00030 return memchr(cbufGetRead(this), c, this->bused); 00031 } 00032 00033 // vim: set ts=4 sw=4: