* Makefile
* config/*
* contrib/*
* doc/*
* extras/*
* include/*
* lib/*
* package/*
* src/*
* tests/*
* utils/*
* removed empty lines left after removed '$' + 'Id' + '$' identifiers
14 lines
191 B
Plaintext
14 lines
191 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
|