Codebase list massdns / 47bc7a2d-3d4f-417f-8cb6-27f01ca2632d/main buffers.h
47bc7a2d-3d4f-417f-8cb6-27f01ca2632d/main

Tree @47bc7a2d-3d4f-417f-8cb6-27f01ca2632d/main (Download .tar.gz)

buffers.h @47bc7a2d-3d4f-417f-8cb6-27f01ca2632d/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