Import Debian changes 4.89-2+deb9u4
[hcoop/debian/exim4.git] / src / blob.h
CommitLineData
2813c06e
CE
1/*
2 * Blob - a general pointer/size item for a memory chunk
3 *
4 * Copyright (C) 2016 Exim maintainers
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