1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
Copyright (c) 1990-1999 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 1999-Oct-05 or later
(the contents of which are also included in zip.h) for terms of use.
If, for some reason, both of these files are missing, the Info-ZIP license
also may be found at: ftp://ftp.cdrom.com/pub/infozip/license.html
*/
#ifndef HELPERS_H
#define HELPERS_H 1
/* Convert a C string to a Pascal string */
unsigned char *CToPCpy(unsigned char *pstr, char *cstr);
/* Convert a Pascal string to a C string */
char *PToCCpy(unsigned char *pstr, char *cstr);
char *sstrcpy(char *to,const char *from);
char *sstrcat(char *to,const char *from);
char *StrCalloc(unsigned short size);
char *StrFree(char *strPtr);
char *sBit2Str(unsigned short value);
void print_extra_info(void);
int ParseArguments(char *s, char ***arg);
void PrintArguments(int argc, char **argv);
Boolean IsZipFile(char *name);
OSErr printerr(const char *msg, int cond, int err, int line, char *file,
const char *msg2);
int PrintUserHFSerr(int cond, int err, char *msg2);
short CheckMountedVolumes(char *FullPath);
void DoWarnUserDupVol(char *path);
void PrintFileInfo(void);
int stricmp(const char *p1, const char *p2);
void leftStatusString(char *status);
void rightStatusString(char *status);
Boolean isZipFile(FSSpec *fileToOpen);
unsigned long MacFileDate_to_UTime(unsigned long mactime);
Boolean CheckForSwitch(char *Switch, int argc, char **argv);
void MakeCompatibleString(char *MacOS_Str,
const char SpcChar1, const char SpcChar2,
const char SpcChar3, const char SpcChar4,
short CurrTextEncodingBase);
#define MAX_ARGS 25
#endif /* HELPERS_H */
|