mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-02 02:17:41 +03:00
Indent
This commit is contained in:
parent
a1c07cc277
commit
e640be4b8f
4 changed files with 18 additions and 18 deletions
|
@ -94,7 +94,7 @@ IncludeIsMainSourceRegex: ""
|
|||
IndentCaseLabels: false
|
||||
IndentCaseBlocks: false
|
||||
IndentGotoLabels: true
|
||||
IndentPPDirectives: None
|
||||
IndentPPDirectives: AfterHash
|
||||
IndentExternBlock: AfterExternBlock
|
||||
IndentRequires: false
|
||||
IndentWidth: 4
|
||||
|
|
|
@ -52,7 +52,7 @@ b64_to_bin(unsigned char *const bin, const char *b64, size_t bin_maxlen, size_t
|
|||
REV64_NONE, REV64_NONE, REV64_NONE, REV64_NONE
|
||||
};
|
||||
const unsigned char *b64_u = (const unsigned char *) b64;
|
||||
unsigned char * bin_w = bin;
|
||||
unsigned char *bin_w = bin;
|
||||
unsigned char mask = 0U;
|
||||
unsigned char t0 = 0, t1 = 0, t2 = 0, t3 = 0;
|
||||
uint32_t t = 0;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
#include <sys/types.h>
|
||||
# include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
|
@ -10,19 +10,19 @@
|
|||
#include <string.h>
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <termios.h>
|
||||
#include <unistd.h>
|
||||
# include <fcntl.h>
|
||||
# include <poll.h>
|
||||
# include <termios.h>
|
||||
# include <unistd.h>
|
||||
#elif defined(_WIN32)
|
||||
#include <windows.h>
|
||||
# include <windows.h>
|
||||
#endif
|
||||
|
||||
#include "get_line.h"
|
||||
#include "helpers.h"
|
||||
|
||||
#ifndef TCSAFLUSH
|
||||
#define TCSAFLUSH 0
|
||||
# define TCSAFLUSH 0
|
||||
#endif
|
||||
|
||||
#ifndef VERIFY_ONLY
|
||||
|
@ -33,7 +33,7 @@ disable_echo(void)
|
|||
fflush(stdout);
|
||||
fflush(stderr);
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
# if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
{
|
||||
struct termios p;
|
||||
|
||||
|
@ -43,7 +43,7 @@ disable_echo(void)
|
|||
p.c_lflag &= ~ECHO;
|
||||
tcsetattr(0, TCSAFLUSH, &p);
|
||||
}
|
||||
#elif defined(_WIN32)
|
||||
# elif defined(_WIN32)
|
||||
{
|
||||
HANDLE handle = GetStdHandle(STD_INPUT_HANDLE);
|
||||
DWORD mode = 0;
|
||||
|
@ -51,7 +51,7 @@ disable_echo(void)
|
|||
GetConsoleMode(handle, &mode);
|
||||
SetConsoleMode(handle, mode & ~ENABLE_ECHO_INPUT);
|
||||
}
|
||||
#endif
|
||||
# endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -60,7 +60,7 @@ enable_echo(void)
|
|||
fflush(stdout);
|
||||
fflush(stderr);
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
# if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||
{
|
||||
struct termios p;
|
||||
|
||||
|
@ -70,7 +70,7 @@ enable_echo(void)
|
|||
p.c_lflag |= ECHO;
|
||||
tcsetattr(0, TCSAFLUSH, &p);
|
||||
}
|
||||
#elif defined(_WIN32)
|
||||
# elif defined(_WIN32)
|
||||
{
|
||||
HANDLE handle = GetStdHandle(STD_INPUT_HANDLE);
|
||||
DWORD mode = 0;
|
||||
|
@ -78,7 +78,7 @@ enable_echo(void)
|
|||
GetConsoleMode(handle, &mode);
|
||||
SetConsoleMode(handle, mode | ENABLE_ECHO_INPUT);
|
||||
}
|
||||
#endif
|
||||
# endif
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#if !defined(__GNUC__) && !defined(__attribute__)
|
||||
#define __attribute__(X)
|
||||
# define __attribute__(X)
|
||||
#endif
|
||||
#ifdef _WIN32
|
||||
#define DIR_SEP '\\'
|
||||
# define DIR_SEP '\\'
|
||||
#else
|
||||
#define DIR_SEP '/'
|
||||
# define DIR_SEP '/'
|
||||
#endif
|
||||
|
||||
uint64_t le64_load(const unsigned char *p);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue