Blob


1 #ifndef _BIN_H_
2 #define _BIN_H_ 1
3 #if defined(__cplusplus)
4 extern "C" {
5 #endif
7 /*
8 #pragma lib "libbin.a"
9 #pragma src "/sys/src/libbin"
10 */
12 #ifndef _HAVE_BIN
13 typedef struct Bin Bin;
14 #define _HAVE_BIN
15 #endif
17 void *binalloc(Bin **, ulong size, int zero);
18 void *bingrow(Bin **, void *op, ulong osize, ulong size, int zero);
19 void binfree(Bin **);
21 #if defined(__cplusplus)
22 }
23 #endif
24 #endif