Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


formatting fixes
[palacios.git] / palacios / include / palacios / vmm_sprintf.h
index bd498a4..dbba4fa 100644 (file)
@@ -31,6 +31,15 @@ int snprintf(char *str, size_t size, const char * fmt, ...);
 int vsnprintf(char *str, size_t size, const char * fmt, va_list ap);
 int vsnrprintf(char *str, size_t size, int radix, const char * fmt, va_list ap);
 
+#define HD_COLUMN_MASK  0xff
+#define HD_DELIM_MASK   0xff00
+#define HD_OMIT_COUNT   (1 << 16)
+#define HD_OMIT_HEX     (1 << 17)
+#define HD_OMIT_CHARS   (1 << 18)
+
+
+void v3_hexdump(const void * ptr, int length, const char * hdr, int flags);
+
 #endif