lfn.h 423 B

1234567891011121314151617181920
  1. /* lfn.h - Functions for handling VFAT long filenames */
  2. /* Written 1998 by Roman Hodek */
  3. #ifndef _LFN_H
  4. #define _LFN_H
  5. void lfn_reset( void );
  6. /* Reset the state of the LFN parser. */
  7. void lfn_add_slot( DIR_ENT *de, loff_t dir_offset );
  8. /* Process a dir slot that is a VFAT LFN entry. */
  9. char *lfn_get( DIR_ENT *de );
  10. /* Retrieve the long name for the proper dir entry. */
  11. void lfn_check_orphaned(void);
  12. #endif