1lzss_write(3) Allegro manual lzss_write(3)
2
3
4
6 lzss_write - Compresses data using LZSS. Allegro game programming
7 library.
8
10 #include <allegro.h>
11
12
13 int lzss_write(PACKFILE *file, LZSS_PACK_DATA *dat, int size, unsigned
14 char *buf, int last);
15
17 Packs `size' bytes from `buf', using the pack information contained in
18 `dat'. The compressed bytes will be stored in `file'.
19
21 Returns 0 on success, or EOF if there was an error.
22
23
25 create_lzss_pack_data(3), free_lzss_pack_data(3)
26
27
28
29Allegro version 4.4.3 lzss_write(3)