hbc/channel/channelapp/source/blob.h

10 lines
123 B
C
Raw Normal View History

2016-11-23 06:35:12 +01:00
#ifndef _BLOB_H_
#define _BLOB_H_
#include <sys/types.h>
void *blob_alloc(size_t size);
void blob_free(void *p);
#endif