aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/buf.h
blob: 6860a77de4b44d7b2001bd8c99a2f512cad0dc57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2023 Egor Tensin <egor@tensin.name>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __BUF_H__
#define __BUF_H__

#include <stdint.h>

struct buf;

int buf_create(struct buf **, const void *, uint32_t);
int buf_create_from_string(struct buf **, const char *);
void buf_destroy(struct buf *);

uint32_t buf_get_size(const struct buf *);
const void *buf_get_data(const struct buf *);

#endif