File: listmem.h

package info (click to toggle)
recoll 1.43.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,956 kB
  • sloc: cpp: 104,864; python: 9,923; xml: 7,324; ansic: 6,447; sh: 1,252; perl: 166; makefile: 73
file content (11 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#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_ */