Style: add spaces before line continuation

This commit is contained in:
Manuel Pégourié-Gonnard 2015-02-13 14:09:44 +00:00
parent db8e3d8695
commit 013bffe5a7
34 changed files with 76 additions and 76 deletions

View file

@ -34,7 +34,7 @@
#define polarssl_printf printf
#endif
#if defined(POLARSSL_AES_C) && defined(POLARSSL_SHA256_C) &&\
#if defined(POLARSSL_AES_C) && defined(POLARSSL_SHA256_C) && \
defined(POLARSSL_FS_IO)
#include "polarssl/aes.h"
#include "polarssl/sha256.h"
@ -63,7 +63,7 @@
"\n example: aescrypt2 0 file file.aes hex:E76B2413958B00E193\n" \
"\n"
#if !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) ||\
#if !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) || \
!defined(POLARSSL_FS_IO)
int main( void )
{

View file

@ -35,7 +35,7 @@
#define polarssl_printf printf
#endif
#if defined(POLARSSL_CIPHER_C) && defined(POLARSSL_MD_C) &&\
#if defined(POLARSSL_CIPHER_C) && defined(POLARSSL_MD_C) && \
defined(POLARSSL_FS_IO)
#include "polarssl/cipher.h"
#include "polarssl/md.h"
@ -64,7 +64,7 @@
"\n example: crypt_and_hash 0 file file.aes AES-128-CBC SHA1 hex:E76B2413958B00E193\n" \
"\n"
#if !defined(POLARSSL_CIPHER_C) || !defined(POLARSSL_MD_C) ||\
#if !defined(POLARSSL_CIPHER_C) || !defined(POLARSSL_MD_C) || \
!defined(POLARSSL_FS_IO)
int main( void )
{