2008-08-28 19:53:15 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file hex2bin.c
|
|
|
|
/// \brief Converts hexadecimal input strings to binary
|
|
|
|
//
|
2009-04-13 08:27:40 +00:00
|
|
|
// Author: Lasse Collin
|
2008-08-28 19:53:15 +00:00
|
|
|
//
|
2009-04-13 08:27:40 +00:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2008-08-28 19:53:15 +00:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "sysdefs.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
getbin(int x)
|
|
|
|
{
|
|
|
|
if (x >= '0' && x <= '9')
|
|
|
|
return x - '0';
|
|
|
|
|
|
|
|
if (x >= 'A' && x <= 'F')
|
|
|
|
return x - 'A' + 10;
|
|
|
|
|
|
|
|
return x - 'a' + 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
while (true) {
|
|
|
|
int byte = getchar();
|
|
|
|
if (byte == EOF)
|
|
|
|
return 0;
|
|
|
|
if (!isxdigit(byte))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const int digit = getchar();
|
|
|
|
if (digit == EOF || !isxdigit(digit)) {
|
|
|
|
fprintf(stderr, "Invalid input\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte = (getbin(byte) << 4) | getbin(digit);
|
|
|
|
if (putchar(byte) == EOF) {
|
|
|
|
perror(NULL);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|