Codebase list massdns / 65120e49-79d2-4cf6-ba03-03e6f255e34d/main buffers.h
65120e49-79d2-4cf6-ba03-03e6f255e34d/main

Tree @65120e49-79d2-4cf6-ba03-03e6f255e34d/main (Download .tar.gz)

buffers.h @65120e49-79d2-4cf6-ba03-03e6f255e34d/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