Searched defs:dup_ft (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libparted/common/libparted/fs/fat/
H A Dtable.c61 FatTable* dup_ft; local
63 dup_ft = fat_table_new (ft->fat_type, ft->size);
64 if (!dup_ft) return NULL;
66 dup_ft->cluster_count = ft->cluster_count;
67 dup_ft->free_cluster_count = ft->free_cluster_count;
68 dup_ft->bad_cluster_count = ft->bad_cluster_count;
69 dup_ft->last_alloc = ft->last_alloc;
71 memcpy (dup_ft->table, ft->table, ft->raw_size);
73 return dup_ft;

Completed in 28 milliseconds