razor-internal.h
author Dan Winship <danw@gnome.org>
Wed Feb 06 12:59:27 2008 -0500 (2008-02-06)
changeset 113 e408ff1d4a4d
child 186 7f45d0401e37
permissions -rw-r--r--
pad repo files with 0 bytes, not random memory

so you can do:
./razor import-yum
mv rawhide.repo rawhide.repo.orig
make
./razor import-yum
diff rawhide.repo.orig rawhide.repo

(doesn't work with system.repo at the moment...)
     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_ */