summaryrefslogtreecommitdiff
path: root/examples/amqp_sendstring.c
blob: 9258f7fa915f0cb152bd650f43316a1caf57767d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include <stdint.h>
#include "amqp.h"

int main(int argc, char const * const *argv) {
  amqp_connection_state_t conn = amqp_new_connection();
  amqp_destroy_connection(conn);
  return 0;
}