Codebase list massdns / 6e76e06b-c040-4d8e-8f93-9f54a5e986e9/main buffers.h
6e76e06b-c040-4d8e-8f93-9f54a5e986e9/main

Tree @6e76e06b-c040-4d8e-8f93-9f54a5e986e9/main (Download .tar.gz)

buffers.h @6e76e06b-c040-4d8e-8f93-9f54a5e986e9/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