clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -39,13 +39,13 @@
#include <stdint.h>
typedef enum {
B_SUPERBLOCK, /* Block that is the superblock */
B_FREEMAPBLOCK, /* Block used by free-block bitmap */
B_INODE, /* Block that is an inode */
B_IBLOCK, /* Indirect (or doubly-indirect etc.) block */
B_DIRDATA, /* Data block of a directory */
B_DATA, /* Data block */
B_PASTEND, /* Block off the end of the fs */
B_SUPERBLOCK, /* Block that is the superblock */
B_FREEMAPBLOCK, /* Block used by free-block bitmap */
B_INODE, /* Block that is an inode */
B_IBLOCK, /* Indirect (or doubly-indirect etc.) block */
B_DIRDATA, /* Data block of a directory */
B_DATA, /* Data block */
B_PASTEND, /* Block off the end of the fs */
} blockusage_t;
/* Call this after loading the superblock but before doing any checks. */
@@ -63,5 +63,4 @@ void freemap_check(void);
/* Return the number of blocks in use. Valid after freemap_check(). */
unsigned long freemap_blocksused(void);
#endif /* FREEMAP_H */