File: cbytes.c

package info (click to toggle)
nacl 20110221-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,264 kB
  • sloc: asm: 19,669; ansic: 13,199; cpp: 1,125; sh: 793; makefile: 72
file content (16 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (8)
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;
}