git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix crash in queue-ramp
[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-or-later
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