Codebase list massdns / 82d4e916-c0c7-4d13-bb50-89251ab401c4/main buffers.h
82d4e916-c0c7-4d13-bb50-89251ab401c4/main

Tree @82d4e916-c0c7-4d13-bb50-89251ab401c4/main (Download .tar.gz)

buffers.h @82d4e916-c0c7-4d13-bb50-89251ab401c4/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