* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
15 lines
192 B
Plaintext
15 lines
192 B
Plaintext
|
|
#require "hbbz2"
|
|
|
|
#include "simpleio.ch"
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL cI, cJ, nErr
|
|
|
|
cI := "Hello"
|
|
cJ := hb_bz2_Compress( cI, , @nErr )
|
|
? nErr, Len( cJ ), hb_StrToHex( cJ )
|
|
|
|
RETURN
|