📄 cruntime.h
字号:
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
$Id: CRuntime.h,v 1.3 2002/08/06 20:10:37 dallen Exp $
____________________________________________________________________________*/
#ifndef Included_CRuntime_h // [
#define Included_CRuntime_h
#include "pgpClassesConfig.h"
#if defined(PGP_DRIVER98) || defined(PGP_DRIVERNT)
// Not in PGP namespace.
extern "C"
{
void * _cdecl malloc(size_t size);
void _cdecl free(void *memBlock);
void * _cdecl realloc(void *oldBlock, size_t size);
void * _cdecl memmove(void *dest, const void *src, size_t count);
int _cdecl tolower(int c);
int _cdecl toupper(int c);
int _cdecl strncmp(const char *string1, const char *string2,
size_t count);
int _cdecl _stricmp(const char *string1, const char *string2);
int _cdecl _strnicmp(const char *string1, const char *string2,
size_t count);
char * _cdecl strncat(char *strDest, const char *strSource,
size_t count);
char * _cdecl strncpy(char *strDest, const char *strSource,
size_t count);
char * _cdecl strstr(const char *string, const char *strCharSet);
int _cdecl sprintf(char *buffer, const char *format, ...);
int _cdecl _snprintf(char *buffer, size_t count,
const char *format, ...);
int _cdecl vsprintf(char *buffer, const char *format, va_list argptr);
int _cdecl _vsnprintf(char *buffer, size_t count, const char *format,
va_list argptr);
int _cdecl _CrtDbgReport(int nRptType, const char *szFile, int nLine,
const char *szModule, const char *szFormat, ...);
}
#endif // PGP_DRIVER98 || PGP_DRIVERNT
#endif // ] Included_CRuntime_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -