search.h

来自「eC++编译器源码」· C头文件 代码 · 共 26 行

H
26
字号
/***********************************************************************/
/*                                                                     */
/*  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 + =
减小字号Ctrl + -
显示快捷键?