File: lfn.h

package info (click to toggle)
dosfstools 2.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 340 kB
  • ctags: 428
  • sloc: ansic: 3,719; makefile: 175
file content (18 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* lfn.h  -  Functions for handling VFAT long filenames */

/* Written 1998 by Roman Hodek */


#ifndef _LFN_H
#define _LFN_H

void lfn_reset( void );
/* Reset the state of the LFN parser. */

void lfn_add_slot( DIR_ENT *de, loff_t dir_offset );
/* Process a dir slot that is a VFAT LFN entry. */

char *lfn_get( DIR_ENT *de );
/* Retrieve the long name for the proper dir entry. */

#endif