void * NewMem( int n ) { if ( n <=0 ) { return NULL; } else { return malloc( n ); } }
void DeletMen( void * p ) { if ( p != NULL ) { free( p ); } }