~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to ea_mgr.h

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: ea_mgr.h,v 1.1.1.1 2002/03/28 00:02:20 andrew_belov Exp $
 
3
 * ---------------------------------------------------------------------------
 
4
 * Prototypes of the functions located in EA_MGR.C are declared here.
 
5
 *
 
6
 *
 
7
 */
 
8
 
 
9
#ifndef EA_MGR_INCLUDED
 
10
#define EA_MGR_INCLUDED
 
11
 
 
12
unsigned int get_ea_size(char *name);
 
13
unsigned int get_eablk_size(char FAR *blk);
 
14
unsigned int get_num_eas(char FAR *blk);
 
15
int discard_ea(char *name);
 
16
int query_ea(char FAR **dest, char *name, int skip_ln);
 
17
int set_ea(char FAR *i_eas, char *name);
 
18
int detect_ea(char *name);
 
19
int resolve_longname(char *dest, char *name);
 
20
 
 
21
#endif
 
22