mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:51:53 +03:00
tidy-up: alphasort lists, indentation/whitespace, pp
- cmake/win32-cache: alphasort items. - configure.ac: alphasort `CURL_CHECK_FUNC_*` checks. - configure.ac: alphasort `AC_CHECK_FUNCS` checks. - prefer `#ifdef`/`#ifndef`. - lib/asyn-thread: drop unused value of `USE_HTTPSRR_ARES`. - lib/formdata: drop unused header `libgen.h`. - indentation, whitespace. Closes #16490
This commit is contained in:
parent
3834f31b22
commit
387311012c
31 changed files with 180 additions and 189 deletions
|
|
@ -314,10 +314,10 @@ static void MD4_Final(unsigned char *result, MD4_CTX *ctx);
|
|||
#else
|
||||
#define MD4_SET(n) \
|
||||
(ctx->block[(n)] = \
|
||||
(MD4_u32plus)ptr[(n) * 4] | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 1] << 8) | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 2] << 16) | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 3] << 24))
|
||||
(MD4_u32plus)ptr[(n) * 4] | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 1] << 8) | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 2] << 16) | \
|
||||
((MD4_u32plus)ptr[(n) * 4 + 3] << 24))
|
||||
#define MD4_GET(n) \
|
||||
(ctx->block[(n)])
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue