File: cbytes.c

package info (click to toggle)
nacl 20110221-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,540 kB
  • sloc: asm: 19,669; ansic: 13,492; cpp: 1,125; sh: 987; makefile: 37
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;
}