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

25 lines
447 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.
/*
* $Id$
*/
//*******************************************************************
// newline.prg: —j sor karakter.
// 1999, Csisz r Levente
//*******************************************************************
function newline()
static nl
#ifdef _UNIX_
if (nl==nil)
nl:=chr(10)
endif
#else
if (nl==nil)
nl:=chr(13)+chr(10)
endif
#endif
return nl
//*******************************************************************