summaryrefslogtreecommitdiff
path: root/lib/falloc.h
blob: da6f2921cb3e7dd818e08280f487e2e5acaa7bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef H_FALLOC
#define H_FALLOC

/* File space allocation routines. Best fit allocation is used, free blocks
   are compacted. Minimal fragmentation is more important then speed. This
   uses 32 bit offsets on all platforms and should be byte order independent */

#ifdef __cplusplus
extern "C" {
#endif

/*@null@*/ FD_t	fadOpen		(const char * path, int flags, int perms);
unsigned int	fadAlloc	(FD_t fd, unsigned int size); /* 0 on failure */
void		fadFree		(FD_t fd, unsigned int offset);

int		fadFirstOffset	(FD_t fd);
int		fadNextOffset	(FD_t fd, unsigned int lastoff); /* 0 at end */

#ifdef __cplusplus
}
#endif

#endif	/* H_FALLOC */