Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / src / src / blob.h
... / ...
CommitLineData
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