| 34 | /* turn the most frequently called functions into inline functions */ |
| 35 | |
| 36 | inline static char* eat_space_end(const char* p, const char* pend) |
| 37 | { |
| 38 | for(;(p<pend)&&(*p==' ' || *p=='\t') ;p++); |
| 39 | return (char *)p; |
| 40 | } |
| 41 | #define SP(_c) ((_c)=='\t' || (_c)==' ') |
| 42 | inline static char* eat_lws_end(const char* p, const char* pend) |
| 43 | { |
no outgoing calls
no test coverage detected