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

📄 os-inline.c

📁 apache简化版
💻 C
字号:
/* * This file contains functions which can be inlined if the compiler * has an "inline" modifier. Because of this, this file is both a * header file and a compilable module. * * Only inlineable functions should be defined in here. They must all * include the INLINE modifier.  * * If the compiler supports inline, this file will be #included as a * header file from os.h to create all the inline function * definitions. INLINE will be defined to whatever is required on * function definitions to make them inline declarations. * * If the compiler does not support inline, this file will be compiled * as a normal C file into libos.a (along with os.c). In this case * INLINE will _not_ be set so we can use this to test if we are * compiling this source file.   */#ifndef INLINE#define INLINE/* Anything required only when compiling */#include "ap_config.h"#endifINLINE int ap_os_is_path_absolute(const char *file){  /* For now, just do the same check that http_request.c and mod_alias.c   * do.    */  return file && (file[0] == '/' || file[1] == ':');}

⌨️ 快捷键说明

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