// FILE: listpiece.cxx // IMPLEMENTS: list_piece (see listpiece.h for documentation). // YOUR NAME(S), DATE #include "listpiece.h" #include // Provides NULL and size_t namespace main_savitch_5 { void list_piece(const node* start_ptr, const node* end_ptr, node*& head_ptr, node*& tail_ptr) { // IMPLEMENT } }