logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Author

       Generated automatically by Doxygen for DPDK from the source code.

DPDK                                             Version 24.11.2                                rte_hexdump.h(3)

Detailed Description

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

       Definition in file rte_hexdump.h.

Function Documentation

voidrte_hexdump(FILE*f,constchar*title,constvoid*buf,unsignedintlen)
       Dump out memory in a special hex dump format.

       Parametersf 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.

   voidrte_memdump(FILE*f,constchar*title,constvoid*buf,unsignedintlen)
       Dump out memory in a hex format with colons between bytes.

       Parametersf 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.

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)

See Also