Content deleted Content added
m →Pointers and references: spread out argument list across lines for legability |
|||
Line 57:
// we know does not modify the pointee passed in.
void LibraryFunc( int * ptr, int size );
void CallLibraryFunc( int const * const ptr, int const size )
{
|