On a more general style nodenote, declare pointers closer to where you'll define them, and keep their scope as small as possible.
While nothing can technically go wrong with your code, always doing this avoids bugs in much larger/ older codebases in my experience.
e.g. instead of
Node *lnTemp;
int intCount = 0;
for( lnTemp=lnFirst ; lnTemp != NULL ; lnTemp = lnTemp->next )
{
}
write
int intCount = 0;
for(Node* lnTemp=lnFirst ; lnTemp != NULL ; lnTemp = lnTemp->next )
{
}
or, similar, instead of
Node *lnTemp,*lnCurrent;
lnCurrent = lnFirst;
lnTemp = lnCurrent;
write
Node* lnCurrent = lnFirst;
Node* lnTemp = lnCurrent;
