| author | Dan Winship <danw@gnome.org> |
| Mon Feb 04 10:12:04 2008 -0500 (2008-02-04) | |
| changeset 107 | 38f78baf0be9 |
| child 186 | 7f45d0401e37 |
| permissions | -rw-r--r-- |
| krh@91 | 1 |
#ifndef _RAZOR_INTERNAL_H_ |
| krh@91 | 2 |
#define _RAZOR_INTERNAL_H_ |
| krh@91 | 3 |
|
| krh@91 | 4 |
#define ALIGN(value, base) (((value) + (base - 1)) & ~((base) - 1)) |
| krh@91 | 5 |
|
| krh@91 | 6 |
/* Utility functions */ |
| krh@91 | 7 |
|
| krh@91 | 8 |
int razor_create_dir(const char *root, const char *path); |
| krh@91 | 9 |
int razor_write(int fd, const void *data, size_t size); |
| krh@91 | 10 |
|
| krh@91 | 11 |
#endif /* _RAZOR_INTERNAL_H_ */ |