cms_proto.h

来自「pgp soucecode pgp soucecode」· C头文件 代码 · 共 46 行

H
46
字号
/****************************************************************************
 *
 * Copyright (c) 1998, Network Associates, Inc. and its affiliated Companies
 *
 ****************************************************************************/

#include <stdlib.h>
#include <ctype.h>
#include <string.h>

#ifndef STDC_HEADERS

#if PGP_MACINTOSH || PGP_WIN32 || PGP_UNIX

#if PGP_MACINTOSH
#include <unix.h>
#include "pgpStrings.h"
#endif

#define strcasecmp    pgpCompareStringsIgnoreCase
#else
#include <sys/types.h>
#endif

#include <time.h>

#ifndef WIN32
#include <unistd.h>
#endif

#include <stdio.h>

void *malloc (size_t);
int fclose (FILE *);
size_t fread (void *, size_t, size_t, FILE *);
size_t strftime (char *, size_t, const char *, const struct tm *);
int strcasecmp (const char *, const char *);
int getopt (int argc, char * const argv[], const char *optstring);

extern int optind;
extern char *optarg;

#endif /* STDC_HEADERS */

#define SKIPWS(c) while (isspace ((int) (*(c)))) c++

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?