Codebase list massdns / a074b8b3-fbfd-477d-a22b-5d52340d69b0/main buffers.h
a074b8b3-fbfd-477d-a22b-5d52340d69b0/main

Tree @a074b8b3-fbfd-477d-a22b-5d52340d69b0/main (Download .tar.gz)

buffers.h @a074b8b3-fbfd-477d-a22b-5d52340d69b0/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