Server 0.0.1
HTTP/REST server implementation

src/cbuf/skip_non_alpha.c

Go to the documentation of this file.
00001 
00023 #include <ctype.h>
00024 
00025 #include "cbuf.h"
00026 
00027 void
00028 cbufSkipNonAlpha(Cbuf this)
00029 {
00030         while(0 < this->bused && !isalpha(*cbufGetRead(this)))
00031                 cbufIncRead(this, 1);
00032 }
00033 
00034 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines