source: rtems/cpukit/libmisc/dumpbuf/dumpbuf.h @ 170f26a

4.115
Last change on this file since 170f26a was 170f26a, checked in by Joel Sherrill <joel.sherrill@…>, on 06/28/10 at 14:33:34

2010-06-28 Joel Sherrill <joel.sherrill@…>

  • libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Add const.
  • Property mode set to 100644
File size: 794 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1997-2007.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may in
6 *  the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifndef __DUMP_BUFFER_h
13#define __DUMP_BUFFER_h
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19/**
20 *  @brief Print Memory Buffer
21 *
22 *  This method prints @a length bytes beginning at @a buffer in
23 *  a nice format similar to what one would expect from a debugger
24 *  or ROM monitor.
25 *
26 *  @param[in] buffer is the address of the buffer
27 *  @param[in] length is the length of the buffer
28 */
29void rtems_print_buffer(
30  const unsigned char *buffer,
31  int                  length
32);
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif
39/* end of include file */
Note: See TracBrowser for help on using the repository browser.