librist-sys 0.8.3

Bindgen bindings for librist, used by the librist-rust crate
/* librist. Copyright © 2020 SipRadius LLC. All right reserved.
 * Author: Gijs Peskens <gijs@in2ip.nl>
 * Author: Sergio Ammirata, Ph.D. <sergio@ammirata.net>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "common/attributes.h"
#include <stdint.h>
#include <stdatomic.h>
#include <stdbool.h>

struct rist_ref {
	atomic_int refcnt;
	const void *ptr;
};

RIST_PRIV bool rist_ref_iswritable(struct rist_ref *ref);
RIST_PRIV struct rist_ref *rist_ref_create(void *data);
RIST_PRIV void rist_ref_inc(struct rist_ref *ref);