mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-09 01:40:00 +01:00
git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@3 36d66b0a-2a48-0410-832c-cd162a569da5
13 lines
127 B
C
13 lines
127 B
C
|
|
#include <stdio.h>
|
|
|
|
void hexprint(char *d, int n)
|
|
{
|
|
int i;
|
|
for(i = 0; i < n; i++)
|
|
{
|
|
printf("%02hhx ", (char)d[i]);
|
|
}
|
|
}
|
|
|