mirror of
https://github.com/curl/curl.git
synced 2026-08-25 00:33:31 +03:00
checksrc: code style: use 'char *name' style
This commit is contained in:
parent
bc7e08471c
commit
dbadaebfc4
68 changed files with 330 additions and 329 deletions
|
|
@ -45,7 +45,7 @@ static void MD5_Init(MD5_CTX * ctx)
|
|||
}
|
||||
|
||||
static void MD5_Update(MD5_CTX * ctx,
|
||||
const unsigned char * input,
|
||||
const unsigned char *input,
|
||||
unsigned int inputLen)
|
||||
{
|
||||
md5_update(ctx, inputLen, input);
|
||||
|
|
@ -71,7 +71,7 @@ static void MD5_Init(MD5_CTX * ctx)
|
|||
}
|
||||
|
||||
static void MD5_Update(MD5_CTX * ctx,
|
||||
const unsigned char * input,
|
||||
const unsigned char *input,
|
||||
unsigned int inputLen)
|
||||
{
|
||||
gcry_md_write(*ctx, input, inputLen);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue