This commit is contained in:
Frank Denis 2025-01-15 22:07:37 +01:00
parent a1c07cc277
commit e640be4b8f
4 changed files with 18 additions and 18 deletions

View file

@ -94,7 +94,7 @@ IncludeIsMainSourceRegex: ""
IndentCaseLabels: false IndentCaseLabels: false
IndentCaseBlocks: false IndentCaseBlocks: false
IndentGotoLabels: true IndentGotoLabels: true
IndentPPDirectives: None IndentPPDirectives: AfterHash
IndentExternBlock: AfterExternBlock IndentExternBlock: AfterExternBlock
IndentRequires: false IndentRequires: false
IndentWidth: 4 IndentWidth: 4

View file

@ -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 REV64_NONE, REV64_NONE, REV64_NONE, REV64_NONE
}; };
const unsigned char *b64_u = (const unsigned char *) b64; 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 mask = 0U;
unsigned char t0 = 0, t1 = 0, t2 = 0, t3 = 0; unsigned char t0 = 0, t1 = 0, t2 = 0, t3 = 0;
uint32_t t = 0; uint32_t t = 0;

View file

@ -1,6 +1,6 @@
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__) #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
#include <sys/types.h> # include <sys/types.h>
#endif #endif
#include <assert.h> #include <assert.h>
@ -10,19 +10,19 @@
#include <string.h> #include <string.h>
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__) #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
#include <fcntl.h> # include <fcntl.h>
#include <poll.h> # include <poll.h>
#include <termios.h> # include <termios.h>
#include <unistd.h> # include <unistd.h>
#elif defined(_WIN32) #elif defined(_WIN32)
#include <windows.h> # include <windows.h>
#endif #endif
#include "get_line.h" #include "get_line.h"
#include "helpers.h" #include "helpers.h"
#ifndef TCSAFLUSH #ifndef TCSAFLUSH
#define TCSAFLUSH 0 # define TCSAFLUSH 0
#endif #endif
#ifndef VERIFY_ONLY #ifndef VERIFY_ONLY
@ -33,7 +33,7 @@ disable_echo(void)
fflush(stdout); fflush(stdout);
fflush(stderr); fflush(stderr);
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__) # if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
{ {
struct termios p; struct termios p;
@ -43,7 +43,7 @@ disable_echo(void)
p.c_lflag &= ~ECHO; p.c_lflag &= ~ECHO;
tcsetattr(0, TCSAFLUSH, &p); tcsetattr(0, TCSAFLUSH, &p);
} }
#elif defined(_WIN32) # elif defined(_WIN32)
{ {
HANDLE handle = GetStdHandle(STD_INPUT_HANDLE); HANDLE handle = GetStdHandle(STD_INPUT_HANDLE);
DWORD mode = 0; DWORD mode = 0;
@ -51,7 +51,7 @@ disable_echo(void)
GetConsoleMode(handle, &mode); GetConsoleMode(handle, &mode);
SetConsoleMode(handle, mode & ~ENABLE_ECHO_INPUT); SetConsoleMode(handle, mode & ~ENABLE_ECHO_INPUT);
} }
#endif # endif
} }
static void static void
@ -60,7 +60,7 @@ enable_echo(void)
fflush(stdout); fflush(stdout);
fflush(stderr); fflush(stderr);
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__) # if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
{ {
struct termios p; struct termios p;
@ -70,7 +70,7 @@ enable_echo(void)
p.c_lflag |= ECHO; p.c_lflag |= ECHO;
tcsetattr(0, TCSAFLUSH, &p); tcsetattr(0, TCSAFLUSH, &p);
} }
#elif defined(_WIN32) # elif defined(_WIN32)
{ {
HANDLE handle = GetStdHandle(STD_INPUT_HANDLE); HANDLE handle = GetStdHandle(STD_INPUT_HANDLE);
DWORD mode = 0; DWORD mode = 0;
@ -78,7 +78,7 @@ enable_echo(void)
GetConsoleMode(handle, &mode); GetConsoleMode(handle, &mode);
SetConsoleMode(handle, mode | ENABLE_ECHO_INPUT); SetConsoleMode(handle, mode | ENABLE_ECHO_INPUT);
} }
#endif # endif
} }
int int

View file

@ -6,12 +6,12 @@
#include <stdio.h> #include <stdio.h>
#if !defined(__GNUC__) && !defined(__attribute__) #if !defined(__GNUC__) && !defined(__attribute__)
#define __attribute__(X) # define __attribute__(X)
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
#define DIR_SEP '\\' # define DIR_SEP '\\'
#else #else
#define DIR_SEP '/' # define DIR_SEP '/'
#endif #endif
uint64_t le64_load(const unsigned char *p); uint64_t le64_load(const unsigned char *p);