1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef __LZOUTIL_H_INCLUDED
- #define __LZOUTIL_H_INCLUDED 1
- #ifndef __LZOCONF_H_INCLUDED
- #include <lzo/lzoconf.h>
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define lzo_alloc(a,b) (malloc((a)*(b)))
- #define lzo_malloc(a) (malloc(a))
- #define lzo_free(a) (free(a))
- #define lzo_fread(f,b,s) (fread(b,1,s,f))
- #define lzo_fwrite(f,b,s) (fwrite(b,1,s,f))
- #ifdef __cplusplus
- }
- #endif
- #endif
|