Initial commit
Initial commit. Updated release archive.
This commit is contained in:
21
_module/nss/qdb_chknextline.nss
Normal file
21
_module/nss/qdb_chknextline.nss
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "qdb_include"
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
int iResult;
|
||||
int iLine;
|
||||
|
||||
iResult = FALSE;
|
||||
|
||||
if (GetLineNumber()>1)
|
||||
{
|
||||
iLine=GetLineNumber()+1;
|
||||
SetLineNumber(iLine);
|
||||
if (GetLine() == "")
|
||||
iResult=TRUE;
|
||||
iLine=GetLineNumber()-1;
|
||||
SetLineNumber(iLine);
|
||||
}
|
||||
|
||||
return iResult;
|
||||
}
|
||||
Reference in New Issue
Block a user