summaryrefslogtreecommitdiff
path: root/lib/gnutls_compress_int.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-03-29 12:12:42 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-03-29 12:12:42 +0000
commit048029d11678072cf90de585c81fc44b5e3c26aa (patch)
tree91a7457570dfd68032b00ac1642bf215ffcc3f15 /lib/gnutls_compress_int.h
parentd8a99f6a0fc2a7420956b7936579dbdc5e9cc98d (diff)
downloadgnutls-048029d11678072cf90de585c81fc44b5e3c26aa.tar.gz
Prefixed with underscore several internal functions.
Diffstat (limited to 'lib/gnutls_compress_int.h')
-rw-r--r--lib/gnutls_compress_int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gnutls_compress_int.h b/lib/gnutls_compress_int.h
index 7e5abd4eec..284e6a1479 100644
--- a/lib/gnutls_compress_int.h
+++ b/lib/gnutls_compress_int.h
@@ -32,10 +32,10 @@ typedef struct GNUTLS_COMP_HANDLE_STRUCT {
CompressionMethod algo;
} *GNUTLS_COMP_HANDLE;
-GNUTLS_COMP_HANDLE gnutls_comp_init( CompressionMethod, int d);
-void gnutls_comp_deinit(GNUTLS_COMP_HANDLE handle, int d);
+GNUTLS_COMP_HANDLE _gnutls_comp_init( CompressionMethod, int d);
+void _gnutls_comp_deinit(GNUTLS_COMP_HANDLE handle, int d);
-int gnutls_decompress( GNUTLS_COMP_HANDLE handle, char* compressed, int compressed_size, char** plain, int max_record_size);
-int gnutls_compress( GNUTLS_COMP_HANDLE, char* plain, int plain_size, char** compressed, int max_comp_size);
+int _gnutls_decompress( GNUTLS_COMP_HANDLE handle, char* compressed, int compressed_size, char** plain, int max_record_size);
+int _gnutls_compress( GNUTLS_COMP_HANDLE, char* plain, int plain_size, char** compressed, int max_comp_size);
#endif