Codebase list massdns / 89bd9683-3864-43fa-a35f-80879937e7d6/main buffers.h
89bd9683-3864-43fa-a35f-80879937e7d6/main

Tree @89bd9683-3864-43fa-a35f-80879937e7d6/main (Download .tar.gz)

buffers.h @89bd9683-3864-43fa-a35f-80879937e7d6/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