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

📄 search.h

📁 eC++编译器源码
💻 H
字号:
/***********************************************************************/
/*                                                                     */
/*  MODULE : Search                                                    */
/*                                                                     */
/*  FUNCTION : This module contains functions that search for files    */
/*             using the same path as the compiler and runtime         */
/*             and return the correct path names of the files if       */
/*             found.                                                  */
/*                                         EAM  1/90                   */
/***********************************************************************/

#pragma search

boolean Search(char &fileName[]);
/***********************************************************************/
/*                                                                     */
/* This function searches the current directory, the directory         */
/*  "../mod", and the directory "c:/modlib" (in that order)    */
/* for the file name whose character representation is in the paramter */
/* "fileName". A boolean value of TRUE is returned if the file is      */
/* found, FALSE otherwise.  If TRUE is returned, the correct path name */
/* for the file indicating the directory the file was found in is      */
/* copied into the variable "fileName".                                */
/*                                      EAM  1/90                      */
/***********************************************************************/

⌨️ 快捷键说明

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