eal: fix whitespace
[dpdk.git] / lib / librte_eal / common / include / rte_hexdump.h
index d8176d8..5c18a50 100644 (file)
@@ -39,6 +39,8 @@
  * Simple API to dump out memory in a special hex format.
  */
 
+#include <stdio.h>
+
 #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