/* * radare - advanced commandline hexadecimal editor * Copyright (C) 2006,2007 pancake * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include "hexdump.h" char getprintablechar(char a) { if (a>=' '&&a<='~') return a; return '.'; } int is_printable (int c) { if (c<' '||c>'~') return 0; return 1; } /* * Helper function */ void dump_bytes(unsigned char *buf, int len) { int i,j,seek = 0; int inc = 16; for(i=0; i=len) { fprintf(stderr, " "); continue; } fprintf(stderr, "%02x ", buf[j]); } fprintf(stderr, " "); for(j=i; j= len) fprintf(stderr, " "); else if ( is_printable(buf[j]) ) fprintf(stderr, "%c", buf[j]); else fprintf(stderr, "."); } fprintf(stderr, "\n"); } fflush(stderr); }