Provide readn() as a wrapper around read()
[exim.git] / src / src / blob.h
CommitLineData
2592e6c0 1/*
63af6f3a 2 * Blob - a general pointer/size item for a memory chunk
2592e6c0
JH
3 *
4 * Copyright (C) 2016 Exim maintainers
2592e6c0
JH
5 */
6
7#ifndef BLOB_H /* entire file */
8#define BLOB_H
9
10typedef struct {
11 uschar * data;
12 size_t len;
13} blob;
14
15#endif