diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-16 17:30:42 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-16 17:30:42 +0100 |
commit | 6eb6bbfe8e504a611145f454f4045e8f49fd5e44 (patch) | |
tree | baba850cc86ee2d9d61de89da1cdfe408ad8694a /lib/x509_b64.h | |
parent | bdcfdac13179eccee6294402f2654fece149f82b (diff) | |
download | gnutls-6eb6bbfe8e504a611145f454f4045e8f49fd5e44.tar.gz |
Indented code. Use same indentation but with -nut to avoid usage of tabs. In several editors tabs can be configured not to be 8 spaces and this produces artifacts with the current indentation that is a mixture of tabs and spaces.
Diffstat (limited to 'lib/x509_b64.h')
-rw-r--r-- | lib/x509_b64.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/x509_b64.h b/lib/x509_b64.h index 44ed95a2a0..055944ee5f 100644 --- a/lib/x509_b64.h +++ b/lib/x509_b64.h @@ -24,13 +24,13 @@ */ int _gnutls_base64_encode (const uint8_t * data, size_t data_size, - uint8_t ** result); + uint8_t ** result); int _gnutls_fbase64_encode (const char *msg, const uint8_t * data, - int data_size, uint8_t ** result); + int data_size, uint8_t ** result); int _gnutls_base64_decode (const uint8_t * data, size_t data_size, - uint8_t ** result); + uint8_t ** result); int _gnutls_fbase64_decode (const char *header, const uint8_t * data, - size_t data_size, uint8_t ** result); + size_t data_size, uint8_t ** result); #define B64SIZE( data_size) ((data_size%3==0)?((data_size*4)/3):(4+((data_size/3)*4))) |