aboutsummaryrefslogtreecommitdiff
path: root/include/bin.h
blob: dc738f14ffac7ab90eea6050bac2fcd858e2b409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _BIN_H_
#define _BIN_H_ 1
#if defined(__cplusplus)
extern "C" { 
#endif

/*
#pragma	lib	"libbin.a"
#pragma	src	"/sys/src/libbin"
*/

#ifndef _HAVE_BIN
typedef struct Bin		Bin;
#define _HAVE_BIN
#endif

void	*binalloc(Bin **, ulong size, int zero);
void	*bingrow(Bin **, void *op, ulong osize, ulong size, int zero);
void	binfree(Bin **);

#if defined(__cplusplus)
}
#endif
#endif