ext.h (9708ba9f29bd83e21d532f89f93b8c3bf945e843) ext.h (401475f50c6d1dd81cdbd994376d727d90cc979e)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 76 unchanged lines hidden (view full) ---

85/*
86 * Correct the FSInfo block.
87 */
88int writefsinfo(int, struct bootblock *);
89
90/* Opaque type */
91struct fat_descriptor;
92
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 76 unchanged lines hidden (view full) ---

85/*
86 * Correct the FSInfo block.
87 */
88int writefsinfo(int, struct bootblock *);
89
90/* Opaque type */
91struct fat_descriptor;
92
93int cleardirty(struct fat_descriptor *);
94
93void fat_clear_cl_head(struct fat_descriptor *, cl_t);
94bool fat_is_cl_head(struct fat_descriptor *, cl_t);
95
96cl_t fat_get_cl_next(struct fat_descriptor *, cl_t);
97
98int fat_set_cl_next(struct fat_descriptor *, cl_t, cl_t);
99
100cl_t fat_allocate_cluster(struct fat_descriptor *fat);

--- 52 unchanged lines hidden ---
95void fat_clear_cl_head(struct fat_descriptor *, cl_t);
96bool fat_is_cl_head(struct fat_descriptor *, cl_t);
97
98cl_t fat_get_cl_next(struct fat_descriptor *, cl_t);
99
100int fat_set_cl_next(struct fat_descriptor *, cl_t, cl_t);
101
102cl_t fat_allocate_cluster(struct fat_descriptor *fat);

--- 52 unchanged lines hidden ---