Viewing: fat16.h
📄 fat16.h (Read Only) ⬅ To go back
#ifndef FAT16_H
#define FAT16_H

/* Legacy header — redirects to unified FAT driver */
#include "fat.h"

/* Backward compatibility: fat16_mount() is now fat_mount() */
static inline fs_node_t* fat16_mount(uint32_t partition_lba) {
    return fat_mount(partition_lba);
}

#endif