is there a unreadline function anywhere in perl?
am processing flat file with multi-line records, but some records are split across 2 or 3 lines, and i can't test for anything at the end of the line to see if the line continues or not. it's only when i get to next line that i will know if it's a new record or not (special tag starts record off). The main loop is quite complicated processing so i really just want to read next line within the main loop (after already heaving read one line in), check if it's a continution of record, and if it's a new record i want to "unreadline" and continue on processing.