//////////////////////////////////////////////////////////////////////////
| 52 | |
| 53 | /////////////////////////////////////////////////////////////////////////////// |
| 54 | static inline bool isNumeric(int c) |
| 55 | { |
| 56 | return ('0' <= c) && (c <= '9'); |
| 57 | } |
| 58 | |
| 59 | /////////////////////////////////////////////////////////////////////////////// |
| 60 | class SampleFileBuffer |
no outgoing calls
no test coverage detected