Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
rte_hexdump.h(3)		     DPDK		      rte_hexdump.h(3)

NAME
       rte_hexdump.h

SYNOPSIS
       #include	<stdio.h>

   Functions
       void rte_hexdump	(FILE *f, const	char *title, const void	*buf, unsigned
	   int len)
       void rte_memdump	(FILE *f, const	char *title, const void	*buf, unsigned
	   int len)

Detailed Description
       Simple API to dump out memory in	a special hex format.

       Definition in file rte_hexdump.h.

Function Documentation
   void	rte_hexdump (FILE * f, const char * title, const void *	buf, unsigned
       int len)
       Dump out	memory in a special hex	dump format.

       Parameters
	   f A pointer to a file for output.
	   title If not	NULL this string is printed as a header	to the output.
	   buf This is the buffer address to print out.
	   len The number of bytes to dump out.

   void	rte_memdump (FILE * f, const char * title, const void *	buf, unsigned
       int len)
       Dump out	memory in a hex	format with colons between bytes.

       Parameters
	   f A pointer to a file for output.
	   title If not	NULL this string is printed as a header	to the output.
	   buf This is the buffer address to print out.
	   len The number of bytes to dump out.

Author
       Generated automatically by Doxygen for DPDK from	the source code.

Version	25.11.0			Thu Jun	11 2026		      rte_hexdump.h(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=rte_hexdump&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help