recoll/src/utils/listmem.h
Jean-Francois Dockes 8ba31472df added
2016-11-08 12:41:40 +01:00

12 lines
354 B
C++

#ifndef _LISTMEM_H_INCLUDED_
#define _LISTMEM_H_INCLUDED_
#include <ostream>
enum ListmemOpts {LISTMEM_SWAP16 = 1, LISTMEM_SWAP32 = 2};
/// @param startadr starting value for offset listings on the right
extern void listmem(std::ostream&, const void *ptr, int sz,
int startadr = 0, int opts = 0);
#endif /* _LISTMEM_H_INCLUDED_ */