htdos.h

来自「elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, ly」· C头文件 代码 · 共 45 行

H
45
字号
/*             DOS specific routines            */#ifndef HTDOS_H#define HTDOS_H#ifndef HTUTILS_H#include <HTUtils.h>#endif /* HTUTILS_H *//* PUBLIC                                                       HTDOS_wwwName()**              CONVERTS DOS Name into WWW Name** ON ENTRY:**	dosname		DOS file specification (NO NODE)**** ON EXIT:**	returns		WWW file specification***/char * HTDOS_wwwName PARAMS((CONST char * dosname));/* * Converts Unix slashes to DOS */char * HTDOS_slashes PARAMS((char * path));/* PUBLIC                                                       HTDOS_name()**              CONVERTS WWW name into a DOS name** ON ENTRY:**	wwwname		WWW file name**** ON EXIT:**	returns		DOS file specification**** Bug:	Returns pointer to static -- non-reentrant*/char * HTDOS_name PARAMS((char * wwwname));#ifdef WIN_EX char * HTDOS_short_name (char * fn);#else #define HTDOS_short_name(fn)  fn #endif#endif /*  HTDOS_H */

⌨️ 快捷键说明

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