Codebase list massdns / 81d086f1-58a6-49c0-8803-6220f5a96fc9/main buffers.h
81d086f1-58a6-49c0-8803-6220f5a96fc9/main

Tree @81d086f1-58a6-49c0-8803-6220f5a96fc9/main (Download .tar.gz)

buffers.h @81d086f1-58a6-49c0-8803-6220f5a96fc9/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