hexdump.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1998  Mark Baysinger (mbaysing@ucsd.edu)
  3.  * Copyright (C) 1998,1999  Ross Combs (rocombs@cs.nmsu.edu)
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. #include "common/setup_before.h"
  20. #include <stdio.h>
  21. #ifdef HAVE_STDDEF_H
  22. # include <stddef.h>
  23. #else
  24. # ifndef NULL
  25. #  define NULL ((void *)0)
  26. # endif
  27. #endif
  28. #include "common/hexdump.h"
  29. #include "common/setup_after.h"
  30. extern void hexdump(FILE * stream, void const * data, unsigned int len)
  31. {
  32.     unsigned int i;
  33.     unsigned int r,c;
  34.     
  35.     if (!stream)
  36.         return;
  37.     if (!data)
  38. return;
  39.     
  40.     for (r=0,i=0; r<(len/16+(len%16!=0)); r++,i+=16)
  41.     {
  42.         fprintf(stream,"%04X:   ",i); /* location of first byte in line */
  43.         for (c=i; c<i+8; c++) /* left half of hex dump */
  44.     if (c<len)
  45.          fprintf(stream,"%02X ",((unsigned char const *)data)[c]);
  46.     else
  47. fprintf(stream,"   "); /* pad if short line */
  48. fprintf(stream,"  ");
  49. for (c=i+8; c<i+16; c++) /* right half of hex dump */
  50.     if (c<len)
  51. fprintf(stream,"%02X ",((unsigned char const *)data)[c]);
  52.     else
  53. fprintf(stream,"   "); /* pad if short line */
  54. fprintf(stream,"   ");
  55. for (c=i; c<i+16; c++) /* ASCII dump */
  56.     if (c<len)
  57. if (((unsigned char const *)data)[c]>=32 &&
  58.     ((unsigned char const *)data)[c]<127)
  59.     fprintf(stream,"%c",((char const *)data)[c]);
  60. else
  61.     fprintf(stream,"."); /* put this for non-printables */
  62.     else
  63. fprintf(stream," "); /* pad if short line */
  64. fprintf(stream,"n");
  65.     }
  66.     
  67.     fflush(stream);
  68. }