| author | Kristian H?gsberg <krh@redhat.com> |
| Mon Jan 21 23:02:47 2008 -0500 (2008-01-21) | |
| changeset 104 | 705f6dbf0a7e |
| child 186 | 7f45d0401e37 |
| permissions | -rw-r--r-- |
1 #ifndef _RAZOR_INTERNAL_H_
2 #define _RAZOR_INTERNAL_H_
4 #define ALIGN(value, base) (((value) + (base - 1)) & ~((base) - 1))
6 /* Utility functions */
8 int razor_create_dir(const char *root, const char *path);
9 int razor_write(int fd, const void *data, size_t size);
11 #endif /* _RAZOR_INTERNAL_H_ */