~ubuntu-branches/ubuntu/karmic/isomaster/karmic

« back to all changes in this revision

Viewing changes to bk/bkRead.h

  • Committer: Bazaar Package Importer
  • Author(s): David Johnson
  • Date: 2007-10-13 22:25:46 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071013222546-siikcd93dzeafwj0
Tags: 1.1-1
* New upstream release
* Now suggest 'mousepad' package
* Update menu file for section changes
* Fix rules file to not ignore errors from 'make clean'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
int appendStringIfHaveRoom(char* dest, char* src, int destMaxLen, 
 
1
int appendStringIfHaveRoom(char* dest, const char* src, int destMaxLen, 
2
2
                           int destCharsAlreadyUsed, int maxSrcLen);
3
3
bool dirDrFollows(int image);
4
4
bool haveNextRecordInSector(int image);
10
10
                 bool keepPosixPermissions, BkFileBase** specialFile);
11
11
unsigned char readNextRecordLen(int image);
12
12
int readPosixFileMode(VolInfo* volInfo, unsigned* posixPermissions, 
13
 
                         unsigned lenSU);
14
 
int readRockridgeFilename(VolInfo* volInfo, char* dest, unsigned lenSU, 
 
13
                      int lenSU);
 
14
int readRockridgeFilename(VolInfo* volInfo, char* dest, int lenSU, 
15
15
                          unsigned numCharsReadAlready);
16
 
int readRockridgeSymlink(VolInfo* volInfo, BkSymLink** dest, unsigned lenSU);
 
16
int readRockridgeSymlink(VolInfo* volInfo, BkSymLink** dest, int lenSU);
17
17
void removeCrapFromFilename(char* filename, int length);
18
18
int skipDR(int image);
19
19
void stripSpacesFromEndOfString(char* str);