diff options
author | Christian Hesse <mail@eworm.de> | 2013-12-11 11:37:24 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-12-11 11:37:24 +0100 |
commit | 24affbeb71aa4fcd6885e2a773c7c19d29983c07 (patch) | |
tree | 12bd182b5371b32f61c2729b406b9c311e7a282f | |
parent | 7483b2467b1937024396a43aa42f96710462cb03 (diff) | |
download | nthash-24affbeb71aa4fcd6885e2a773c7c19d29983c07.tar.gz nthash-24affbeb71aa4fcd6885e2a773c7c19d29983c07.tar.zst |
remove trailing white spaces
-rw-r--r-- | nthash.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,9 +12,9 @@ #include <stdlib.h> #include <string.h> #include <iconv.h> - + #include <nettle/md4.h> - + #define BUF_SIZE 64 #define TOCODE "UTF-16LE" #define FROMCODE "UTF-8" @@ -27,7 +27,7 @@ int main(int argc, char **argv) { int i, linebreak = 0; size_t done, inbytes, outbytes; iconv_t conv; - + md4_init(&ctx); while (1) { done = inbytes = fread(buffer, 1, BUF_SIZE, stdin); |