Codebase list massdns / a10f7478-1068-4972-a8ac-7ca0e65ad891/main buffers.h
a10f7478-1068-4972-a8ac-7ca0e65ad891/main

Tree @a10f7478-1068-4972-a8ac-7ca0e65ad891/main (Download .tar.gz)

buffers.h @a10f7478-1068-4972-a8ac-7ca0e65ad891/mainraw · history · blame

#ifndef INC_BUFFERS
#define INC_BUFFERS

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct buffer
{
    void *data;
    size_t len;
} buffer_t;

#endif