X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Finclude%2Frte_hexdump.h;h=5c18a50b6dafe4a5434c52d3f41a1440c88d5678;hb=6a34f91690d0;hp=d8176d850d1f547de6c7c1558cda65345e85d9ff;hpb=3031749c2df04a63cdcef186dcce3781e61436e8;p=dpdk.git diff --git a/lib/librte_eal/common/include/rte_hexdump.h b/lib/librte_eal/common/include/rte_hexdump.h index d8176d850d..5c18a50b6d 100644 --- a/lib/librte_eal/common/include/rte_hexdump.h +++ b/lib/librte_eal/common/include/rte_hexdump.h @@ -39,6 +39,8 @@ * Simple API to dump out memory in a special hex format. */ +#include + #ifdef __cplusplus extern "C" { #endif @@ -47,15 +49,15 @@ extern "C" { * Dump out memory in a special hex dump format. * * @param f -* A pointer to a file for output +* A pointer to a file for output * @param title -* If not NULL this string is printed as a header to the output. +* If not NULL this string is printed as a header to the output. * @param buf -* This is the buffer address to print out. +* This is the buffer address to print out. * @param len -* The number of bytes to dump out +* The number of bytes to dump out * @return -* None. +* None. */ extern void @@ -65,15 +67,15 @@ rte_hexdump(FILE *f, const char * title, const void * buf, unsigned int len); * Dump out memory in a hex format with colons between bytes. * * @param f -* A pointer to a file for output +* A pointer to a file for output * @param title -* If not NULL this string is printed as a header to the output. +* If not NULL this string is printed as a header to the output. * @param buf -* This is the buffer address to print out. +* This is the buffer address to print out. * @param len -* The number of bytes to dump out +* The number of bytes to dump out * @return -* None. +* None. */ void