----------------------------------------------------------------------------- Peek part of the butt -----------------------------------------------------------------------------
| 874 | // Peek part of the butt |
| 875 | //----------------------------------------------------------------------------- |
| 876 | const void* CUtlBuffer::PeekGet( int nMaxSize, int nOffset ) |
| 877 | { |
| 878 | if ( !CheckPeekGet( nOffset, nMaxSize ) ) |
| 879 | return NULL; |
| 880 | return &m_Memory[ m_Get + nOffset ]; |
| 881 | } |
| 882 | |
| 883 | |
| 884 | //----------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected