26 lines
633 B
Plaintext
26 lines
633 B
Plaintext
/*
|
||
* $Id$
|
||
*/
|
||
|
||
//*******************************************************************
|
||
// crlf.prg: crlf() function for linking in non CCC environment.
|
||
// 1999, Levente Csisz r
|
||
//*******************************************************************
|
||
|
||
|
||
#ifndef _CCC_
|
||
|
||
//*******************************************************************
|
||
function crlf()
|
||
return chr(13)+chr(10)
|
||
//*******************************************************************
|
||
|
||
#else
|
||
|
||
//*******************************************************************
|
||
static function dummy()
|
||
return nil
|
||
//*******************************************************************
|
||
|
||
#endif
|