summaryrefslogtreecommitdiff
path: root/nacl/cpuid/cbytes.c
blob: bd5d14442d89e30cc4aa1e90b5e97cc3698111fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

int main()
{
  char ch;
  int loop = 0;
  while (scanf("%c",&ch) == 1) {
    printf("0x%02x,",255 & (int) ch);
    if (++loop == 16) {
      loop = 0;
      printf("\n");
    }
  }
  printf("0x00\n");
  return 0;
}