diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-04-14 15:33:15 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-04-14 15:33:15 +0200 |
commit | 66d0a122fcaa10b963420ac316585ed5bbace2a1 (patch) | |
tree | b7501134797484146f1382d276ec94205ddce587 /lib/gnutls_str.h | |
parent | 3965579aaf5ae277b388414e7d7829196ec78fbf (diff) | |
download | gnutls-66d0a122fcaa10b963420ac316585ed5bbace2a1.tar.gz |
More indentation.
Diffstat (limited to 'lib/gnutls_str.h')
-rw-r--r-- | lib/gnutls_str.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/gnutls_str.h b/lib/gnutls_str.h index 32ee16cf33..9888ea3b3c 100644 --- a/lib/gnutls_str.h +++ b/lib/gnutls_str.h @@ -35,10 +35,10 @@ void _gnutls_str_cat (char *dest, size_t dest_tot_size, const char *src); typedef struct { - opaque *allocd; /* pointer to allocated data */ - opaque *data; /* API: pointer to data to copy from */ + opaque *allocd; /* pointer to allocated data */ + opaque *data; /* API: pointer to data to copy from */ size_t max_length; - size_t length; /* API: current length */ + size_t length; /* API: current length */ gnutls_realloc_function realloc_func; gnutls_alloc_function alloc_func; gnutls_free_function free_func; @@ -53,8 +53,9 @@ int _gnutls_string_append_str (gnutls_string *, const char *str); int _gnutls_string_append_data (gnutls_string *, const void *data, size_t data_size); -void _gnutls_string_get_data( gnutls_string *, void*, size_t *size); -void _gnutls_string_get_datum( gnutls_string *, gnutls_datum_t *, size_t max_size); +void _gnutls_string_get_data (gnutls_string *, void *, size_t * size); +void _gnutls_string_get_datum (gnutls_string *, gnutls_datum_t *, + size_t max_size); #ifndef __attribute__ /* This feature is available in gcc versions 2.5 and later. */ @@ -80,7 +81,8 @@ char *_gnutls_bin2hex (const void *old, size_t oldlen, char *buffer, int _gnutls_hex2bin (const opaque * hex_data, int hex_size, opaque * bin_data, size_t * bin_size); -int _gnutls_hostname_compare (const char *certname, size_t certnamesize, const char *hostname); +int _gnutls_hostname_compare (const char *certname, size_t certnamesize, + const char *hostname); #define MAX_CN 256 #endif |