Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
591a74a6
Commit
591a74a6
authored
Sep 01, 2003
by
Niels Möller
Browse files
(print_hex): Use const.
Rev: src/nettle/testsuite/testutils.c:1.22 Rev: src/nettle/testsuite/testutils.h:1.18
parent
9f90db01
Changes
2
Hide whitespace changes
Inline
Side-by-side
testsuite/testutils.c
View file @
591a74a6
...
...
@@ -109,7 +109,7 @@ decode_hex_dup(const char *hex)
}
void
print_hex
(
unsigned
length
,
uint8_t
*
data
)
print_hex
(
unsigned
length
,
const
uint8_t
*
data
)
{
unsigned
i
;
...
...
testsuite/testutils.h
View file @
591a74a6
...
...
@@ -35,7 +35,7 @@ const uint8_t *
decode_hex_dup
(
const
char
*
hex
);
void
print_hex
(
unsigned
length
,
uint8_t
*
data
);
print_hex
(
unsigned
length
,
const
uint8_t
*
data
);
/* The main program */
int
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment