1#include <config.h>
2#include "lst.h"
3
4int lstEOL( HLST hLst )
5{
6 if ( !hLst )
7 return true;
8
9 if ( !hLst->hCurrent )
10 return true;
11
12 return false;
13}
14
15
16