crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

charat.cc (176B)


      1 #include "netbuffer"
      2 
      3 char Netbuffer::charat(unsigned index) const {
      4     PROFILE("Netbuffer::charat");
      5     
      6     if (index >= buf_sz)
      7 	return (0);
      8     return buf_data[index];
      9 }