Codebase list massdns / a98c9841-199b-447c-a963-5c127b6813da/main buffers.h
a98c9841-199b-447c-a963-5c127b6813da/main

Tree @a98c9841-199b-447c-a963-5c127b6813da/main (Download .tar.gz)

buffers.h @a98c9841-199b-447c-a963-5c127b6813da/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