~ubuntu-branches/debian/stretch/jfsutils/stretch

« back to all changes in this revision

Viewing changes to libfs/super.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2005-01-07 10:12:20 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050107101220-ka3f7smw42zysmk1
Tags: 1.1.7-1
* new upstream release (Closes: #289106)
* start synopsis with lowercase

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *   Copyright (c) International Business Machines  Corp., 2000
 
2
 *   Copyright (c) International Business Machines Corp., 2000-2002
3
3
 *
4
4
 *   This program is free software;  you can redistribute it and/or modify
5
5
 *   it under the terms of the GNU General Public License as published by
20
20
 
21
21
#include "utilsubs.h"
22
22
 
23
 
int32_t ujfs_validate_super(struct superblock *);
24
 
int32_t ujfs_put_superblk(HFILE, struct superblock *, int16_t);
25
 
int32_t ujfs_init_superblock(struct superblock *, HFILE, char *, int64_t, uint32_t,
26
 
                int32_t, int32_t, uint32_t, int64_t, int32_t, int32_t, int64_t, int32_t, int32_t,
27
 
                int64_t, int32_t, int64_t, int32_t );
28
 
int32_t ujfs_get_superblk(HFILE, struct superblock *, int32_t);
29
 
int32_t inrange(uint32_t, uint32_t, uint32_t);
 
23
struct superblock;
 
24
struct logsuper;
 
25
 
 
26
extern int ujfs_validate_super(struct superblock *);
 
27
extern int ujfs_put_superblk(HFILE, struct superblock *, int16_t);
 
28
extern int ujfs_get_superblk(HFILE, struct superblock *, int32_t);
 
29
extern int ujfs_put_logsuper(HFILE, struct logsuper *);
 
30
extern int ujfs_get_logsuper(HFILE, struct logsuper *);
 
31
extern int inrange(uint32_t, uint32_t, uint32_t);
30
32
 
31
33
#endif