blob: 4b0279a4f6e63bf429f90a791e82a4545a6637e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>
*
* libsstv is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef _SSTV_H_
#define _SSTV_H_
#include "libsstv.h"
/*
* Memory management functions
*/
extern sstv_malloc_t sstv_malloc_user;
extern sstv_free_t sstv_free_user;
#endif
|