Gitiles
Code Review
Sign In
gerrit.devboardsforandroid.linaro.org
/
device
/
linaro
/
dragonboard
/
1978bac09c5655652f0e106dc83f6f87a7107c2c
/
.
/
qcom
/
rmtfs
/
util.h
blob: 3a9ec3ee8e7c7ce3db0629b757494dbc0f9f3f9f [
file
] [
log
] [
blame
]
#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