summaryrefslogtreecommitdiff
path: root/lib/strfile.h
blob: 8afa7efcfed69f56a25e31c8d8a42f50eea683da (plain)
1
2
3
4
5
6
7
8
typedef struct {
    opaque *data;
    size_t size;
    int mmaped;
} strfile;

void _gnutls_strfile_free(strfile * x);
strfile _gnutls_file_to_str(const char *file);