* contrib/hbformat/hbfmtcls.prg
! fixed casing of some function names.
* utils/hbmk2/hbmk2.prg
; all changes below apply to .xhp (xMate) to .hbp conversion:
! properly convert input filenames with spaces in them
! remove lib prefix from .a input filenames
% do not add empty -L options
* do not add include paths with %HB_INSTALL%\ in them
+ split non-portable, Borland-specific include path lists
concatenated with ';' into distinct -I options
% do not add empty include paths
* tests/testop.prg
* tests/testntx.prg
* tests/vmasort.prg
* tests/testlbl.prg
* tests/testidle.prg
* tests/videotst.prg
* tests/testmem.prg
* tests/testinit.prg
* tests/testhtml.prg
* tests/tstcolor.prg
* tests/vidtest.prg
* tests/tstuse.prg
* tests/vec1.prg
* tests/while.prg
* tests/tstdspac.prg
* tests/version.prg
* tests/testpre.prg
* tests/tstprag.prg
* formatted. mostly with hbformat.
19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Testing the VERSION function */
|
|
|
|
/* Harbour Project source code
|
|
http://harbour-project.org/
|
|
Donated to the public domain by David G. Holm <dholm@jsd-llc.com>.
|
|
*/
|
|
|
|
PROCEDURE Main()
|
|
|
|
OutStd( Chr( 34 ) + Version() + Chr( 34 ) + hb_eol() )
|
|
OutStd( Chr( 34 ) + hb_compiler() + Chr( 34 ) + hb_eol() )
|
|
OutStd( Chr( 34 ) + OS() + Chr( 34 ) + hb_eol() )
|
|
|
|
RETURN
|