95a987f0a485a31f5a98aa550aee73c2d630b3e7
[exim.git] / src / src / blob.h
1 /*
2  *  Blob - a general pointer/size item for a memory chunk
3  *
4  *  Copyright (C) 2016  Exim maintainers
5  *  SPDX-License-Identifier: GPL-2.0-only
6  */
7
8 #ifndef BLOB_H  /* entire file */
9 #define BLOB_H
10
11 typedef struct {
12   uschar * data;
13   size_t   len;
14 } blob;
15
16 #endif