SPDX: license tags (mostly by guesswork)
[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