Files
harbour-core/harbour/tests/test.prg
Viktor Szakats 7665582530 2010-05-13 10:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* tests/test.prg
    ! Implemented missing function.

  * package/winuni/RELNOTES
    * upx 3.04 -> 3.05

  * contrib/hbct/ctcom1.c
    * Minor formatting.
2010-05-13 08:01:33 +00:00

24 lines
346 B
Plaintext

/*
* $Id$
*/
PROCEDURE Main()
LOCAL s := " " + Chr( 0 ) + " mab " + Chr( 0 ) + " "
StrDump( s )
QOut( s )
QOut( '"' + LTrim( s ) + '"' )
QOut( '"' + RTrim( s ) + '"' )
QOut( '"' + AllTrim( s ) + '"' )
RETURN
STATIC PROCEDURE StrDump( s )
LOCAL tmp
FOR EACH tmp IN s
QOut( Asc( tmp ) )
NEXT
RETURN