Files
harbour-core/harbour/contrib/hbbz2/tests/test.prg
Viktor Szakats 32f95811e1 2010-03-20 10:42 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
- contrib/hbbzip2
  + contrib/hbbz2
  * contrib/Makefile
  * contrib/hbbz2/hbbzip2.hbc
    * Renaming hbbzip2 to hbbz2 (pass 1/2)
2010-03-20 09:43:04 +00:00

13 lines
185 B
Plaintext

/*
* $Id$
*/
#include "simpleio.ch"
PROCEDURE Main()
LOCAL cI, cJ, nErr
cI := "Hello"
cJ := HB_BZ2_COMPRESS( cI,, @nErr )
? nErr, LEN( cJ ), HB_STRTOHEX( cJ )
RETURN