⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 microsft.h

📁 功能强大的文本编辑器
💻 H
字号:
/*      microsft.h                          17.02.04       */
/*
/  --------------------------------------------------------------
/  Copyright (C) 1993: Michael Braun
/                      Kaetinger Muehlenweg 103 A
/                      D-28816 Stuhr
/  --------------------------------------------------------------
/
/    header file for microsft.c (function prototypes)
/
/
*/


/* some constants */

/* function prototypes */

/* ersatz fuer microsoft functions (kein ANSI_Standard !!) */

/* the function "ltoa" is existent in hp-ux,           */
/* but is different from the implementation in ms-dos. */
/* so we use a macro to replace the name "ltoa".       */

#if (ACT_OP_SYSTEM != MS_DOS) && (ACT_OP_SYSTEM != WIN_32)
#define ltoa MS_ltoa
#endif

#if (!LINUX_FOR_CYGWIN) && (!OS_QNX6)
extern int stricmp (const char *string1, const char *string2);
extern int strnicmp (const char *string1, const char *string2, size_t max_len);
#endif

extern char *strupr (char *string);
extern char *ltoa (long value, char *string, int radix);
extern unsigned long _lrotl (unsigned long arg, int count);
extern unsigned long _lrotr (unsigned long arg, int count);


/* Modification History */
/* 15.01.93 - file erzeugt */
/* 07.05.03 - LINUX_FOR_CYGWIN */
/* 17.02.04 - QNX6: New ! */

⌨️ 快捷键说明

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