00001 #include"mempl.h" 00002 #ifndef MEMPL_OUT_H 00003 #define MEMPL_OUT_H 00004 inline ostream& operator<<(ostream& str,const mempl_t& memp) 00005 { 00006 for(size_t j=0;j<memp.l;j++) 00007 { 00008 cout << (char)(memp.ptr[j]); 00009 } 00010 return str; 00011 } 00012 00013 #endif