Files
harbour-core/harbour/samples/cccppc/guesseol.prg
1999-11-09 01:37:27 +00:00

36 lines
820 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* $Id$
*/
//*******************************************************************
// guesseol.prg: A kital lt sorvgjel t rol sa.
// 1999, Csisz r Levente
*********************************************************************
static gEol
static gEol_preSet
*********************************************************************
function setPGuessEol(eol_preSet)
if (eol_preSet!=nil)
gEol_preSet:=eol_preSet
endif
return nil
*********************************************************************
function setGuessEol(eol)
if (gEol==nil)
gEol:=eol
endif
return nil
*********************************************************************
function guessedEol()
if (gEol==nil)
return gEol_preset
endif
return gEol
*********************************************************************