mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-01 16:45:09 +01:00
10 lines
123 B
C
10 lines
123 B
C
#ifndef _BLOB_H_
|
|
#define _BLOB_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
void *blob_alloc(size_t size);
|
|
void blob_free(void *p);
|
|
|
|
#endif
|