You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
477 B
C
17 lines
477 B
C
// 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
|