| changeset 126 | 3142795705a5 |
| child 186 | 7f45d0401e37 |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/razor-internal.h Wed Feb 20 12:42:42 2008 -0500 1.3 @@ -0,0 +1,11 @@ 1.4 +#ifndef _RAZOR_INTERNAL_H_ 1.5 +#define _RAZOR_INTERNAL_H_ 1.6 + 1.7 +#define ALIGN(value, base) (((value) + (base - 1)) & ~((base) - 1)) 1.8 + 1.9 +/* Utility functions */ 1.10 + 1.11 +int razor_create_dir(const char *root, const char *path); 1.12 +int razor_write(int fd, const void *data, size_t size); 1.13 + 1.14 +#endif /* _RAZOR_INTERNAL_H_ */