[go: up one dir, main page]

File: util.h

package info (click to toggle)
rmtfs 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 180 kB
  • sloc: ansic: 1,866; makefile: 27
file content (9 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#ifndef __UTIL_H__
#define __UTIL_H__

#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define MAX(x, y) ((x) > (y) ? (x) : (y))

void print_hex_dump(const char *prefix, const void *buf, size_t len);

#endif