summaryrefslogtreecommitdiff
path: root/examples/utils.h
blob: 51a71579024e7d33ec4991b9248b43cbb7cc97bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
// SPDX-License-Identifier: mit

#ifndef librabbitmq_examples_utils_h
#define librabbitmq_examples_utils_h

void die(const char *fmt, ...);
extern void die_on_error(int x, char const *context);
extern void die_on_amqp_error(amqp_rpc_reply_t x, char const *context);

extern void amqp_dump(void const *buffer, size_t len);

extern uint64_t now_microseconds(void);
extern void microsleep(int usec);

#endif