Clean end-of-line output usage (not actually POSIX)

This commit is contained in:
Unix-Ninja
2016-06-24 18:08:02 -04:00
parent 78a819417b
commit fce2363fec
2 changed files with 7 additions and 9 deletions
+6
View File
@@ -6,6 +6,12 @@
#ifndef TYPES_H
#define TYPES_H
#ifdef _WIN
#define EOL "\r\n"
#else
#define EOL "\n"
#endif
typedef struct
{
uint salt_buf[16];