📄 helpers.h
字号:
/* 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 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -