Codebase list massdns / bc89673d-1278-4bc8-bd6f-85edaafd4e35/main buffers.h
bc89673d-1278-4bc8-bd6f-85edaafd4e35/main

Tree @bc89673d-1278-4bc8-bd6f-85edaafd4e35/main (Download .tar.gz)

buffers.h @bc89673d-1278-4bc8-bd6f-85edaafd4e35/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