Codebase list massdns / 14287b34-b988-4404-a9c5-6d3009ee20dd/main buffers.h
14287b34-b988-4404-a9c5-6d3009ee20dd/main

Tree @14287b34-b988-4404-a9c5-6d3009ee20dd/main (Download .tar.gz)

buffers.h @14287b34-b988-4404-a9c5-6d3009ee20dd/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