razor-internal.h
author Kristian H?gsberg <krh@redhat.com>
Wed Mar 12 15:38:56 2008 -0400 (2008-03-12)
changeset 171 cca0174a756e
child 186 7f45d0401e37
permissions -rw-r--r--
Write out the new repo on install.

We write the repo to a lock file repo, and once the RPMs are installed
we rename() the lock repo back in place.
     1 #ifndef _RAZOR_INTERNAL_H_
     2 #define _RAZOR_INTERNAL_H_
     3 
     4 #define ALIGN(value, base) (((value) + (base - 1)) & ~((base) - 1))
     5 
     6 /* Utility functions */
     7 
     8 int razor_create_dir(const char *root, const char *path);
     9 int razor_write(int fd, const void *data, size_t size);
    10 
    11 #endif /* _RAZOR_INTERNAL_H_ */