#include "extern.h"

listtmp()
	{  int cnt = 0;

		strcpy(ssent,"\n"); rsout();

		fpw = fopen(temp_fil,"r");
		if ( fpw == NULL ) return(0);
		fgets(fbuff,255,fpw); fgets(fbuff,255,fpw);

		while(1)
		{	
			if ( fgets(fbuff,255,fpw) == NULL ) break;
			cnt++;
			sprintf(ssent,"%d:%s",cnt,fbuff); rsout();
		}
		fclose(fpw);

		return(0);
	}
